Home | History | Annotate | Download | only in libdex

Lines Matching defs:SHA1Update

4  *  - Made argument to SHA1Update a const pointer, and enabled
24 Routine SHA1Update changed from
25 void SHA1Update(SHA1_CTX* context, unsigned char* data,
28 void SHA1Update(SHA1_CTX* context, unsigned char* data,
35 8191 (8K - 1) due to the 'len << 3' on line 3 of SHA1Update().
41 I also changed the declaration of variables i & j in SHA1Update
212 void SHA1Update(SHA1_CTX* context, const unsigned char* data,
250 SHA1Update(context, (unsigned char *)"\200", 1);
252 SHA1Update(context, (unsigned char *)"\0", 1);
254 SHA1Update(context, finalcount, 8);
304 SHA1Update(&context, buffer, bytesread);