Diff

Differences From Artifact [46f665cb64]:

To Artifact [cf44cc0e4d]:


66
67
68
69
70
71
72
73
74


75
76
77

78
79
80
66
67
68
69
70
71
72


73
74
75
76

77
78
79
80







-
-
+
+


-
+



    int Computed;               /* Is the digest computed?         */
    int Corrupted;             /* Is the message digest corrupted? */
} SHA1Context;

/*
 *  Function Prototypes
 */
int SHA1Reset(  SHA1Context *);
int SHA1Input(  SHA1Context *,
static int SHA1Reset(  SHA1Context *);
static int SHA1Input(  SHA1Context *,
                const uint8_t *,
                unsigned int);
int SHA1Result( SHA1Context *,
static int SHA1Result( SHA1Context *,
                uint8_t Message_Digest[SHA1HashSize]);

#endif