sha1#
Functions
-
void SHA1Transform(uint32_t state[5], const unsigned char buffer[64])#
-
void SHA1Update(SHA1_CTX *context, const unsigned char *data, uint32_t len)#
Updates
context
withdata
or lengthlen
.
-
void SHA1(char *hash_out, const char *str, int len)#
Convenience function. Writes digest of
str
(of sizelen
) tohash_out
.hash_out
must be a string with length of at least 21 bytes.
-
struct SHA1_CTX#