Symbol: SHA1Update
common/lib/libc/hash/sha1/sha1.c
277
SHA1Update(context, (const uint8_t *)"\200", 1);
common/lib/libc/hash/sha1/sha1.c
279
SHA1Update(context, (const uint8_t *)"\0", 1);
common/lib/libc/hash/sha1/sha1.c
280
SHA1Update(context, finalcount, 8); /* Should cause a SHA1Transform() */
common/lib/libc/hash/sha1/sha1.c
78
__weak_alias(SHA1Update,_SHA1Update)
lib/libc/hash/hmac.c
76
(void *)SHA1Init, (void *)SHA1Update, (void *)SHA1Final,
lib/libcrypt/hmac_sha1.c
17
#define HASH_Update SHA1Update
lib/libskey/skeylogin.c
513
SHA1Update(&ctx, secret, secretlen);
lib/libskey/skeylogin.c
514
SHA1Update(&ctx, username, strlen(username));
lib/libskey/skeylogin.c
522
SHA1Update(&ctx, up, strlen(up));
lib/libskey/skeysubr.c
172
SHA1Update(&sha, (unsigned char *)buf, buflen);
lib/libskey/skeysubr.c
271
SHA1Update(&sha, (unsigned char *)x, SKEY_BINKEY_SIZE);
sbin/rndctl/rndctl.c
203
SHA1Update(&s, (const uint8_t *)&rs.entropy, sizeof(rs.entropy));
sbin/rndctl/rndctl.c
204
SHA1Update(&s, rs.data, sizeof(rs.data));
sbin/rndctl/rndctl.c
335
SHA1Update(&s, (const uint8_t *)&rs.entropy, sizeof(rs.entropy));
sbin/rndctl/rndctl.c
336
SHA1Update(&s, rs.data, sizeof(rs.data));
sys/arch/amd64/stand/prekern/prng.c
110
SHA1Update(&sig, (uint8_t *)&rndsave->entropy,
sys/arch/amd64/stand/prekern/prng.c
112
SHA1Update(&sig, rndsave->data, sizeof(rndsave->data));
sys/dev/marvell/mvcesa.c
275
SHA1Update(&sha1ctx, c->cri_key, klen_bytes);
sys/dev/marvell/mvcesa.c
276
SHA1Update(&sha1ctx, hmac_ipad_buffer,
sys/dev/marvell/mvcesa.c
294
SHA1Update(&sha1ctx, c->cri_key, klen_bytes);
sys/dev/marvell/mvcesa.c
295
SHA1Update(&sha1ctx, hmac_opad_buffer,
sys/dev/marvell/mvxpsec.c
2797
SHA1Update(&sha1, key, kbytelen);
sys/dev/marvell/mvxpsec.c
2842
SHA1Update(&sha1, ipad, 64);
sys/dev/marvell/mvxpsec.c
2853
SHA1Update(&sha1, opad, 64);
sys/dev/pci/ubsec.c
1062
SHA1Update(&sha1ctx, macini->cri_key,
sys/dev/pci/ubsec.c
1064
SHA1Update(&sha1ctx, hmac_ipad_buffer,
sys/dev/pci/ubsec.c
1083
SHA1Update(&sha1ctx, macini->cri_key,
sys/dev/pci/ubsec.c
1085
SHA1Update(&sha1ctx, hmac_opad_buffer,
sys/kern/kern_entropy.c
594
SHA1Update(&ctx, (const void *)&seed->entropy, sizeof(seed->entropy));
sys/kern/kern_entropy.c
595
SHA1Update(&ctx, seed->data, sizeof(seed->data));
sys/netinet/ip_carp.c
280
SHA1Update(&sc->sc_sha1, sc->sc_pad, sizeof(sc->sc_pad));
sys/netinet/ip_carp.c
281
SHA1Update(&sc->sc_sha1, (void *)&carp_version, sizeof(carp_version));
sys/netinet/ip_carp.c
282
SHA1Update(&sc->sc_sha1, (void *)&type, sizeof(type));
sys/netinet/ip_carp.c
291
SHA1Update(&sc->sc_sha1, (void *)&vhid, sizeof(vhid));
sys/netinet/ip_carp.c
313
SHA1Update(&sc->sc_sha1, (void *)&cur, sizeof(cur));
sys/netinet/ip_carp.c
338
SHA1Update(&sc->sc_sha1, (void *)&cur6, sizeof(cur6));
sys/netinet/ip_carp.c
356
SHA1Update(&sha1ctx, (void *)counter, sizeof(sc->sc_counter));
sys/netinet/ip_carp.c
361
SHA1Update(&sha1ctx, sc->sc_pad, sizeof(sc->sc_pad));
sys/netinet/ip_carp.c
362
SHA1Update(&sha1ctx, md, 20);
sys/netinet/sctp_hashdriver.c
134
SHA1Update(&context, k_ipad, 64); /* start with inner pad */
sys/netinet/sctp_hashdriver.c
135
SHA1Update(&context, text, text_len); /* then text of datagram */
sys/netinet/sctp_hashdriver.c
149
SHA1Update(&context, k_opad, 64); /* start with outer pad */
sys/netinet/sctp_hashdriver.c
150
SHA1Update(&context, digest, 20); /* then results of 1st hash */
sys/netinet/sctp_hashdriver.c
182
SHA1Update(&tctx, key, key_len);
sys/netinet/sctp_hashdriver.c
237
SHA1Update(&context, k_ipad, 64); /* start with inner pad */
sys/netinet/sctp_hashdriver.c
241
SHA1Update(&context, mtod(m_at, char *)+offset,
sys/netinet/sctp_hashdriver.c
261
SHA1Update(&context, k_opad, 64); /* start with outer pad */
sys/netinet/sctp_hashdriver.c
262
SHA1Update(&context, digest, 20); /* then results of 1st hash */
sys/netinet/sctp_hashdriver.c
95
SHA1Update(&tctx, key, key_len);
sys/opencrypto/cryptosoft_xform.c
904
SHA1Update(ctx, buf, len);
sys/sys/sha1.h
28
void SHA1Update(SHA1_CTX *, const uint8_t *, unsigned int);
tests/lib/libc/hash/h_hash.c
108
SHA1Update(&ctx, buf, len);
tests/lib/libc/hash/h_hash.c
113
SHA1Update(&ctx, buf, len);
usr.bin/cksum/sha1.c
16
#define MD5Update SHA1Update
usr.bin/xinstall/xinstall.c
945
SHA1Update(&ctxSHA1, p, size);
usr.bin/xinstall/xinstall.c
979
SHA1Update(&ctxSHA1, buf, nr);
usr.sbin/npf/npfctl/npf_cmd.c
61
SHA1Update(&c, d, l);