Searched refs:SHA1Update (Results 1 - 19 of 19) sorted by relevance

/freebsd-11-stable/lib/libnetbsd/
H A Dsha1.h44 #define SHA1Update SHA1_Update macro
/freebsd-11-stable/contrib/wpa/src/crypto/
H A Dsha1_i.h19 void SHA1Update(struct SHA1Context *context, const void *data, u32 len);
H A Dcrypto_internal.c97 SHA1Update(&ctx->u.sha1, key, key_len);
111 SHA1Update(&ctx->u.sha1, k_pad, sizeof(k_pad));
155 SHA1Update(&ctx->u.sha1, data, len);
280 SHA1Update(&ctx->u.sha1, k_pad, sizeof(k_pad));
281 SHA1Update(&ctx->u.sha1, mac, 20);
H A Dsha1-internal.c41 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) function
288 SHA1Update(context, (unsigned char *) "\200", 1);
290 SHA1Update(context, (unsigned char *) "\0", 1);
292 SHA1Update(contex
[all...]
/freebsd-11-stable/sys/crypto/
H A Dsha1.h68 #define SHA1Update(x, y, z) sha1_loop((x), (y), (z)) macro
/freebsd-11-stable/sys/opencrypto/
H A Dxform_sha1.c85 SHA1Update(ctx, buf, len);
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/hash/
H A Dh_hash.c108 SHA1Update(&ctx, buf, len);
113 SHA1Update(&ctx, buf, len);
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dsha1.h29 void SHA1Update(SHA1_CTX *, const u_int8_t *, size_t)
H A Dsha1.c127 SHA1Update(SHA1_CTX *context, const u_int8_t *data, size_t len) function
159 SHA1Update(context, (u_int8_t *)"\200", 1);
161 SHA1Update(context, (u_int8_t *)"\0", 1);
162 SHA1Update(context, finalcount, 8); /* Should cause a SHA1Transform() */
/freebsd-11-stable/sys/netinet/
H A Dip_carp.c359 SHA1Update(&sc->sc_sha1, sc->sc_pad, sizeof(sc->sc_pad));
360 SHA1Update(&sc->sc_sha1, (void *)&version, sizeof(version));
361 SHA1Update(&sc->sc_sha1, (void *)&type, sizeof(type));
362 SHA1Update(&sc->sc_sha1, (void *)&vhid, sizeof(vhid));
379 SHA1Update(&sc->sc_sha1, (void *)&cur, sizeof(cur));
400 SHA1Update(&sc->sc_sha1, (void *)&cur6, sizeof(cur6));
420 SHA1Update(&sha1ctx, (void *)counter, sizeof(sc->sc_counter));
425 SHA1Update(&sha1ctx, sc->sc_pad, sizeof(sc->sc_pad));
426 SHA1Update(&sha1ctx, md, 20);
H A Dsctp_os_bsd.h452 #define SCTP_SHA1_UPDATE SHA1Update
/freebsd-11-stable/crypto/openssh/
H A Ddigest-libc.c88 (md_update_fn *) SHA1Update,
/freebsd-11-stable/sys/netgraph/
H A Dng_mppc.c879 SHA1Update(&c, h, len);
880 SHA1Update(&c, pad1, sizeof(pad1));
881 SHA1Update(&c, h2, len);
882 SHA1Update(&c, pad2, sizeof(pad2));
/freebsd-11-stable/sys/dev/safe/
H A Dsafe.c660 SHA1Update(&sha1ctx, key, klen);
661 SHA1Update(&sha1ctx, hmac_ipad_buffer,
676 SHA1Update(&sha1ctx, key, klen);
677 SHA1Update(&sha1ctx, hmac_opad_buffer,
/freebsd-11-stable/sys/dev/cesa/
H A Dcesa.c480 SHA1Update(&sha1ctx, ipad, SHA1_HMAC_BLOCK_LEN);
483 SHA1Update(&sha1ctx, opad, SHA1_HMAC_BLOCK_LEN);
/freebsd-11-stable/sys/net/
H A Dif_ethersubr.c1410 SHA1Update(&ctx, buf, sz);
/freebsd-11-stable/sys/dev/ubsec/
H A Dubsec.c865 SHA1Update(&sha1ctx, key, klen);
866 SHA1Update(&sha1ctx, hmac_ipad_buffer,
881 SHA1Update(&sha1ctx, key, klen);
882 SHA1Update(&sha1ctx, hmac_opad_buffer,
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_digest.c503 SHA1Update(ctx, indata, insize);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc8175 INTERCEPTOR(void, SHA1Update, void *context, const u8 *data, unsigned len) {
8177 COMMON_INTERCEPTOR_ENTER(ctx, SHA1Update, context, data, len);
8182 REAL(SHA1Update)(context, data, len);
8249 COMMON_INTERCEPT_FUNCTION(SHA1Update); \

Completed in 249 milliseconds