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

  /external/syslinux/gpxe/src/crypto/axtls/
sha1.c 55 void SHA1Update(SHA1_CTX *ctx, const uint8_t *msg, int len)
  /external/mesa3d/src/util/sha1/
sha1.c 124 SHA1Update(SHA1_CTX *context, const uint8_t *data, size_t len)
156 SHA1Update(context, (uint8_t *)"\200", 1);
158 SHA1Update(context, (uint8_t *)"\0", 1);
159 SHA1Update(context, finalcount, 8); /* Should cause a SHA1Transform() */
  /external/webrtc/webrtc/base/
sha1.cc 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
233 void SHA1Update(SHA1_CTX* context, const uint8_t* data, size_t input_len) {
277 SHA1Update(context, reinterpret_cast<const uint8_t*>("\200"), 1);
279 SHA1Update(context, reinterpret_cast<const uint8_t*>("\0"), 1);
281 SHA1Update(context, finalcount, 8); // Should cause a SHA1Transform().
  /bionic/libc/upstream-netbsd/common/lib/libc/hash/sha1/
sha1.c 78 __weak_alias(SHA1Update,_SHA1Update)
238 void SHA1Update(SHA1_CTX *context, const uint8_t *data, unsigned int len)
277 SHA1Update(context, (const uint8_t *)"\200", 1);
279 SHA1Update(context, (const uint8_t *)"\0", 1);
280 SHA1Update(context, finalcount, 8); /* Should cause a SHA1Transform() */
  /external/syslinux/com32/libutil/
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
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)
    [all...]
  /external/valgrind/none/tests/
sha1_test.c 65 void SHA1Update(SHA1_CTX* context, const unsigned char* data, u_int32_t len);
177 void SHA1Update(SHA1_CTX* context, const unsigned char* data, u_int32_t len)
231 SHA1Update(context, &c, 1);
234 SHA1Update(context, &c, 1);
236 SHA1Update(context, finalcount, 8); /* Should cause a SHA1Transform() */
255 SHA1Update(&ctx, abc, 3);
  /external/wpa_supplicant_8/src/crypto/
sha1-internal.c 41 SHA1Update(&ctx, addr[i], len[i]);
61 Routine SHA1Update changed from
62 void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned int
65 void SHA1Update(SHA1_CTX* context, unsigned char* data, unsigned
72 greater than 8191 (8K - 1) due to the 'len << 3' on line 3 of SHA1Update().
78 I also changed the declaration of variables i & j in SHA1Update to
248 void SHA1Update(SHA1_CTX* context, const void *_data, u32 len)
288 SHA1Update(context, (unsigned char *) "\200", 1);
290 SHA1Update(context, (unsigned char *) "\0", 1);
292 SHA1Update(context, finalcount, 8); /* Should cause a SHA1Transform(
    [all...]
  /dalvik/libdex/
sha1.cpp 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)
    [all...]

Completed in 492 milliseconds