/src/lib/libcrypt/ |
hmac_sha1.c | 17 #define HASH_Update SHA1Update
|
/src/usr.bin/cksum/ |
sha1.c | 16 #define MD5Update SHA1Update
|
/src/sys/netinet/ |
sctp_hashdriver.c | 95 SHA1Update(&tctx, key, key_len); 134 SHA1Update(&context, k_ipad, 64); /* start with inner pad */ 135 SHA1Update(&context, text, text_len); /* then text of datagram */ 149 SHA1Update(&context, k_opad, 64); /* start with outer pad */ 150 SHA1Update(&context, digest, 20); /* then results of 1st hash */ 182 SHA1Update(&tctx, key, key_len); 237 SHA1Update(&context, k_ipad, 64); /* start with inner pad */ 241 SHA1Update(&context, mtod(m_at, char *)+offset, 261 SHA1Update(&context, k_opad, 64); /* start with outer pad */ 262 SHA1Update(&context, digest, 20); /* then results of 1st hash * [all...] |
ip_carp.c | 280 SHA1Update(&sc->sc_sha1, sc->sc_pad, sizeof(sc->sc_pad)); 281 SHA1Update(&sc->sc_sha1, (void *)&carp_version, sizeof(carp_version)); 282 SHA1Update(&sc->sc_sha1, (void *)&type, sizeof(type)); 291 SHA1Update(&sc->sc_sha1, (void *)&vhid, sizeof(vhid)); 313 SHA1Update(&sc->sc_sha1, (void *)&cur, sizeof(cur)); 338 SHA1Update(&sc->sc_sha1, (void *)&cur6, sizeof(cur6)); 356 SHA1Update(&sha1ctx, (void *)counter, sizeof(sc->sc_counter)); 361 SHA1Update(&sha1ctx, sc->sc_pad, sizeof(sc->sc_pad)); 362 SHA1Update(&sha1ctx, md, 20);
|
/src/sys/sys/ |
sha1.h | 28 void SHA1Update(SHA1_CTX *, const uint8_t *, unsigned int);
|
/src/tests/lib/libc/hash/ |
h_hash.c | 108 SHA1Update(&ctx, buf, len); 113 SHA1Update(&ctx, buf, len);
|
/src/sbin/rndctl/ |
rndctl.c | 203 SHA1Update(&s, (const uint8_t *)&rs.entropy, sizeof(rs.entropy)); 204 SHA1Update(&s, rs.data, sizeof(rs.data)); 335 SHA1Update(&s, (const uint8_t *)&rs.entropy, sizeof(rs.entropy)); 336 SHA1Update(&s, rs.data, sizeof(rs.data));
|
/src/sys/arch/amd64/stand/prekern/ |
prng.c | 110 SHA1Update(&sig, (uint8_t *)&rndsave->entropy, 112 SHA1Update(&sig, rndsave->data, sizeof(rndsave->data));
|
/src/lib/libskey/ |
skeylogin.c | 513 SHA1Update(&ctx, secret, secretlen); 514 SHA1Update(&ctx, username, strlen(username)); 522 SHA1Update(&ctx, up, strlen(up));
|
skeysubr.c | 172 SHA1Update(&sha, (unsigned char *)buf, buflen); 271 SHA1Update(&sha, (unsigned char *)x, SKEY_BINKEY_SIZE);
|
/src/lib/libc/hash/ |
hmac.c | 76 (void *)SHA1Init, (void *)SHA1Update, (void *)SHA1Final,
|
/src/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() */
|
/src/sys/dev/marvell/ |
mvcesa.c | 275 SHA1Update(&sha1ctx, c->cri_key, klen_bytes); 276 SHA1Update(&sha1ctx, hmac_ipad_buffer, 294 SHA1Update(&sha1ctx, c->cri_key, klen_bytes); 295 SHA1Update(&sha1ctx, hmac_opad_buffer,
|
mvxpsec.c | 2797 SHA1Update(&sha1, key, kbytelen); 2842 SHA1Update(&sha1, ipad, 64); 2853 SHA1Update(&sha1, opad, 64);
|
/src/usr.sbin/npf/npfctl/ |
npf_cmd.c | 61 SHA1Update(&c, d, l);
|
/src/usr.bin/xinstall/ |
xinstall.c | 937 SHA1Update(&ctxSHA1, p, size); 971 SHA1Update(&ctxSHA1, buf, nr);
|
/src/sys/kern/ |
kern_entropy.c | 593 SHA1Update(&ctx, (const void *)&seed->entropy, sizeof(seed->entropy)); 594 SHA1Update(&ctx, seed->data, sizeof(seed->data));
|
/src/sys/opencrypto/ |
cryptosoft_xform.c | 903 SHA1Update(ctx, buf, len);
|
/src/sys/dev/pci/ |
ubsec.c | 1062 SHA1Update(&sha1ctx, macini->cri_key, 1064 SHA1Update(&sha1ctx, hmac_ipad_buffer, 1083 SHA1Update(&sha1ctx, macini->cri_key, 1085 SHA1Update(&sha1ctx, hmac_opad_buffer,
|
/src/lib/libc/include/ |
namespace.h | 150 #define SHA1Update _SHA1Update
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
sanitizer_common_interceptors.inc | 8045 INTERCEPTOR(void, SHA1Update, void *context, const u8 *data, unsigned len) { 8047 COMMON_INTERCEPTOR_ENTER(ctx, SHA1Update, context, data, len); 8052 REAL(SHA1Update)(context, data, len); 8119 COMMON_INTERCEPT_FUNCTION(SHA1Update); \
|