Home
last modified time | relevance | path

Searched refs:SHA1Update (Results 1 – 12 of 12) sorted by relevance

/external/wpa_supplicant_8/src/crypto/
Dcrypto_internal.c97 SHA1Update(&ctx->u.sha1, key, key_len); in crypto_hash_init()
111 SHA1Update(&ctx->u.sha1, k_pad, sizeof(k_pad)); in crypto_hash_init()
155 SHA1Update(&ctx->u.sha1, data, len); in crypto_hash_update()
280 SHA1Update(&ctx->u.sha1, k_pad, sizeof(k_pad)); in crypto_hash_finish()
281 SHA1Update(&ctx->u.sha1, mac, 20); in crypto_hash_finish()
Dsha1-internal.c41 SHA1Update(&ctx, addr[i], len[i]); in sha1_vector()
248 void SHA1Update(SHA1_CTX* context, const void *_data, u32 len) in SHA1Update() function
288 SHA1Update(context, (unsigned char *) "\200", 1); in SHA1Final()
290 SHA1Update(context, (unsigned char *) "\0", 1); in SHA1Final()
292 SHA1Update(context, finalcount, 8); /* Should cause a SHA1Transform() in SHA1Final()
Dsha1_i.h19 void SHA1Update(struct SHA1Context *context, const void *data, u32 len);
/external/llvm-project/compiler-rt/test/sanitizer_common/TestCases/NetBSD/
Dsha1.cpp15 SHA1Update(&ctx, entropy, __arraycount(entropy)); in test1()
66 SHA1Update(&ctx, entropy, __arraycount(entropy)); in test3()
78 SHA1Update(&ctx, entropy, __arraycount(entropy)); in test4()
/external/ppp/pppd/
Deap.c329 SHA1Update(&ctxt, pn_secret, strlen(pn_secret)); in pncrypt_setkey()
331 SHA1Update(&ctxt, tbuf, strlen(tbuf)); in pncrypt_setkey()
818 SHA1Update(&ctxt, &esp->es_server.ea_id, 1);
819 SHA1Update(&ctxt, esp->es_server.ea_skey,
821 SHA1Update(&ctxt, esp->es_server.ea_peer,
829 SHA1Update(&ctxt, &esp->es_server.ea_id, 1);
830 SHA1Update(&ctxt, esp->es_server.ea_skey,
832 SHA1Update(&ctxt, optr - SHA_DIGESTSIZE,
1270 SHA1Update(&ctxt, &val, 1);
1271 SHA1Update(&ctxt, esp->es_client.ea_skey, SESSION_KEY_LEN);
[all …]
/external/openssh/openbsd-compat/
Dsha1.c129 SHA1Update(SHA1_CTX *context, const u_int8_t *data, size_t len) in SHA1Update() function
146 DEF_WEAK(SHA1Update);
162 SHA1Update(context, (u_int8_t *)"\200", 1); in SHA1Pad()
164 SHA1Update(context, (u_int8_t *)"\0", 1); in SHA1Pad()
165 SHA1Update(context, finalcount, 8); /* Should cause a SHA1Transform() */ in SHA1Pad()
Dsha1.h29 void SHA1Update(SHA1_CTX *, const u_int8_t *, size_t)
/external/mesa3d/src/util/sha1/
Dsha1.c125 SHA1Update(SHA1_CTX *context, const uint8_t *data, size_t len) in SHA1Update() function
157 SHA1Update(context, (uint8_t *)"\200", 1); in SHA1Pad()
159 SHA1Update(context, (uint8_t *)"\0", 1); in SHA1Pad()
160 SHA1Update(context, finalcount, 8); /* Should cause a SHA1Transform() */ in SHA1Pad()
Dsha1.h32 void SHA1Update(SHA1_CTX *, const uint8_t *, size_t);
/external/mesa3d/src/util/
Dmesa-sha1.h45 SHA1Update(ctx, (const unsigned char *)data, size); in _mesa_sha1_update()
/external/openssh/
Ddigest-libc.c82 (md_update_fn *) SHA1Update,
/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors.inc8395 INTERCEPTOR(void, SHA1Update, void *context, const u8 *data, unsigned len) {
8397 COMMON_INTERCEPTOR_ENTER(ctx, SHA1Update, context, data, len);
8402 REAL(SHA1Update)(context, data, len);
8469 COMMON_INTERCEPT_FUNCTION(SHA1Update); \