HomeSort by relevance Sort by last modified time
    Searched defs:SHA1Update (Results 1 - 6 of 6) sorted by null

  /bionic/libc/bionic/
sha1.c 214 void SHA1Update(context, data, len)
258 SHA1Update(context, (const u_char *)"\200", 1);
260 SHA1Update(context, (const u_char *)"\0", 1);
261 SHA1Update(context, finalcount, 8); /* Should cause a SHA1Transform() */
  /bionic/libc/stdlib/
sha1hash.c 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
95 void SHA1Update(SHA1_CTX* context, unsigned char* data, uint32_t len); /*
199 void SHA1Update(SHA1_CTX* context, unsigned char* data, uint32_t len) /*
237 SHA1Update(context, (unsigned char *)"\200", 1);
239 SHA1Update(context, (unsigned char *)"\0", 1);
241 SHA1Update(context, finalcount, 8); /* Should cause a SHA1Transform() *
    [all...]
  /system/extras/ext4_utils/
sha1.c 215 void SHA1Update(context, data, len)
259 SHA1Update(context, (const u_char *)"\200", 1);
261 SHA1Update(context, (const u_char *)"\0", 1);
262 SHA1Update(context, finalcount, 8); /* Should cause a SHA1Transform() */
  /dalvik/libdex/
sha1.c 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
215 void SHA1Update(SHA1_CTX* context, const unsigned char* data,
253 SHA1Update(context, (unsigned char *)"\200", 1);
255 SHA1Update(context, (unsigned char *)"\0", 1);
257 SHA1Update(context, finalcount, 8)
    [all...]
  /external/wpa_supplicant/
sha1.c 385 static void SHA1Update(struct SHA1Context *context, const void *data, u32 len);
406 SHA1Update(&ctx, addr[i], len[i]);
478 Routine SHA1Update changed from
479 void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned int
482 void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned
489 greater than 8191 (8K - 1) due to the 'len << 3' on line 3 of SHA1Update().
495 I also changed the declaration of variables i & j in SHA1Update to
665 void SHA1Update(SHA1_CTX* context, const void *_data, u32 len)
705 SHA1Update(context, (unsigned char *) "\200", 1);
707 SHA1Update(context, (unsigned char *) "\0", 1)
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/crypto/
sha1.c 390 static void SHA1Update(struct SHA1Context *context, const void *data, u32 len);
411 SHA1Update(&ctx, addr[i], len[i]);
485 Routine SHA1Update changed from
486 void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned int
489 void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned
496 greater than 8191 (8K - 1) due to the 'len << 3' on line 3 of SHA1Update().
502 I also changed the declaration of variables i & j in SHA1Update to
672 void SHA1Update(SHA1_CTX* context, const void *_data, u32 len)
712 SHA1Update(context, (unsigned char *) "\200", 1);
714 SHA1Update(context, (unsigned char *) "\0", 1)
    [all...]

Completed in 149 milliseconds