1 /* Public API for Steve Reid's public domain SHA-1 implementation */
2 /* This file is in the public domain */
13 #define SHA_DIGEST_LENGTH 20
16 void SHA1_Init(SHA_CTX
*context
);
17 void SHA1_Update(SHA_CTX
*context
, const uint8_t *data
, unsigned long len
);
18 void SHA1_Final(uint8_t *digest
, SHA_CTX
*context
);