Home | History | Annotate | Download | only in Support

Lines Matching defs:SHA1Update

6  *  - Made argument to SHA1Update a const pointer, and enabled
26 Routine SHA1Update changed from
27 void SHA1Update(SHA1_CTX* context, unsigned char* data,
30 void SHA1Update(SHA1_CTX* context, unsigned char* data,
37 8191 (8K - 1) due to the 'len << 3' on line 3 of SHA1Update().
43 I also changed the declaration of variables i & j in SHA1Update
213 void SHA1Update(SHA1_CTX* context, const uint8_t* data,
251 SHA1Update(context, (uint8_t *)"\200", 1);
253 SHA1Update(context, (uint8_t *)"\0", 1);
255 SHA1Update(context, finalcount, 8);
305 SHA1Update(&context, buffer, bytesread);