OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SHA1Update
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/libjingle/source/talk/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
219
void
SHA1Update
(SHA1_CTX* context, const uint8* data, size_t input_len) {
263
SHA1Update
(context, reinterpret_cast<const uint8*>("\200"), 1);
265
SHA1Update
(context, reinterpret_cast<const uint8*>("\0"), 1);
267
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/valgrind/main/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() */
254
SHA1Update
(&ctx, "abc", 3);
/external/wpa_supplicant_8/src/crypto/
sha1-internal.c
37
SHA1Update
(&ctx, addr[i], len[i]);
56
Routine
SHA1Update
changed from
57
void
SHA1Update
(SHA1_CTX* context, unsigned char* data, unsigned int
60
void
SHA1Update
(SHA1_CTX* context, unsigned char* data, unsigned
67
greater than 8191 (8K - 1) due to the 'len << 3' on line 3 of
SHA1Update
().
73
I also changed the declaration of variables i & j in
SHA1Update
to
243
void
SHA1Update
(SHA1_CTX* context, const void *_data, u32 len)
283
SHA1Update
(context, (unsigned char *) "\200", 1);
285
SHA1Update
(context, (unsigned char *) "\0", 1);
287
SHA1Update
(context, finalcount, 8); /* Should cause a SHA1Transform(
[
all
...]
/system/extras/ext4_utils/
sha1.c
217
void
SHA1Update
(context, data, len)
261
SHA1Update
(context, (const u_char *)"\200", 1);
263
SHA1Update
(context, (const u_char *)"\0", 1);
264
SHA1Update
(context, finalcount, 8); /* Should cause a SHA1Transform() */
/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
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
...]
/frameworks/compile/libbcc/lib/Support/
sha1.c
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
214
void
SHA1Update
(SHA1_CTX* context, const unsigned char* data,
252
SHA1Update
(context, (unsigned char *)"\200", 1);
254
SHA1Update
(context, (unsigned char *)"\0", 1);
256
SHA1Update
(context, finalcount, 8)
[
all
...]
Completed in 608 milliseconds