Home | History | Annotate | Download | only in libutil

Lines Matching defs:SHA1Update

12 Routine SHA1Update changed from
13 void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned int
16 void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned
23 greater than 8191 (8K - 1) due to the 'len << 3' on line 3 of SHA1Update().
29 I also changed the declaration of variables i & j in SHA1Update to
242 void SHA1Update(SHA1_CTX * context, const unsigned char *data, uint32_t len)
280 SHA1Update(context, (unsigned char *)"\200", 1);
282 SHA1Update(context, (unsigned char *)"\0", 1);
284 SHA1Update(context, finalcount, 8); /* Should cause a SHA1Transform()
354 SHA1Update(&context, buffer, i);