Symbol: HMAC_Update
crypto/heimdal/kdc/kx509.c
124
HMAC_Update(ctx, version_2_0, sizeof(version_2_0));
crypto/heimdal/kdc/kx509.c
129
HMAC_Update(ctx, &p, 1);
crypto/heimdal/kdc/kx509.c
134
HMAC_Update(ctx, rep->certificate->data, rep->certificate->length);
crypto/heimdal/kdc/kx509.c
136
HMAC_Update(ctx, (unsigned char *)*rep->e_text, strlen(*rep->e_text));
crypto/heimdal/kdc/kx509.c
87
HMAC_Update(ctx, version_2_0, sizeof(version_2_0));
crypto/heimdal/kdc/kx509.c
88
HMAC_Update(ctx, req->pk_key.data, req->pk_key.length);
crypto/heimdal/lib/gssapi/ntlm/crypto.c
159
HMAC_Update(c, hmac, 4);
crypto/heimdal/lib/gssapi/ntlm/crypto.c
160
HMAC_Update(c, in->value, in->length);
crypto/heimdal/lib/ntlm/ntlm.c
1187
HMAC_Update(c, ntlmResponse->data, 16);
crypto/heimdal/lib/ntlm/ntlm.c
1401
HMAC_Update(c, buf.data, buf.length);
crypto/heimdal/lib/ntlm/ntlm.c
1407
HMAC_Update(c, buf.data, buf.length);
crypto/heimdal/lib/ntlm/ntlm.c
1851
HMAC_Update(c, svr_chal, 8);
crypto/heimdal/lib/ntlm/ntlm.c
1852
HMAC_Update(c, clnt_nonce, clnt_nonce_length);
crypto/krb5/src/lib/crypto/openssl/hmac.c
209
ok = HMAC_Update(ctx, (uint8_t *)iov->data.data, iov->data.length);
crypto/openssl/crypto/engine/eng_openssl.c
530
if (!HMAC_Update(hctx->ctx, data, count))
crypto/openssl/crypto/pkcs12/p12_mutl.c
289
|| !HMAC_Update(hmac, p12->authsafes->d.data->data,
crypto/openssl/crypto/rsa/rsa_ossl.c
492
if (HMAC_Update(hmac, buf, num - flen) <= 0) {
crypto/openssl/crypto/rsa/rsa_ossl.c
497
if (HMAC_Update(hmac, from, flen) <= 0) {
crypto/openssl/crypto/rsa/rsa_pk1.c
334
if (HMAC_Update(hmac, be_iter, sizeof(be_iter)) <= 0) {
crypto/openssl/crypto/rsa/rsa_pk1.c
338
if (HMAC_Update(hmac, (unsigned char *)label, llen) <= 0) {
crypto/openssl/crypto/rsa/rsa_pk1.c
342
if (HMAC_Update(hmac, be_bitlen, sizeof(be_bitlen)) <= 0) {
crypto/openssl/include/openssl/hmac.h
45
OSSL_DEPRECATEDIN_3_0 int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data,
crypto/openssl/providers/implementations/kdfs/hkdf.c
602
if (!HMAC_Update(hmac, prev, dig_len))
crypto/openssl/providers/implementations/kdfs/hkdf.c
606
if (!HMAC_Update(hmac, info, info_len))
crypto/openssl/providers/implementations/kdfs/hkdf.c
609
if (!HMAC_Update(hmac, &ctr, 1))
crypto/openssl/providers/implementations/kdfs/pbkdf2.c
443
if (!HMAC_Update(hctx, salt, saltlen)
crypto/openssl/providers/implementations/kdfs/pbkdf2.c
444
|| !HMAC_Update(hctx, itmp, 4)
crypto/openssl/providers/implementations/kdfs/pbkdf2.c
451
if (!HMAC_Update(hctx, digtmp, mdlen)
crypto/openssl/providers/implementations/macs/hmac_prov.c
245
return HMAC_Update(macctx->ctx, data, datalen);
crypto/openssl/ssl/tls_depr.c
127
return HMAC_Update(ctx->old_ctx, data, len);
crypto/openssl/test/hmactest.c
116
|| !TEST_false(HMAC_Update(ctx, test[4].data, test[4].data_len))
crypto/openssl/test/hmactest.c
118
|| !TEST_false(HMAC_Update(ctx, test[4].data, test[4].data_len)))
crypto/openssl/test/hmactest.c
142
|| !TEST_false(HMAC_Update(ctx, test[4].data, test[4].data_len))
crypto/openssl/test/hmactest.c
147
|| !TEST_true(HMAC_Update(ctx, test[4].data, test[4].data_len))
crypto/openssl/test/hmactest.c
160
|| !TEST_true(HMAC_Update(ctx, test[5].data, test[5].data_len))
crypto/openssl/test/hmactest.c
169
|| !TEST_true(HMAC_Update(ctx, test[6].data, test[6].data_len))
crypto/openssl/test/hmactest.c
178
|| !TEST_true(HMAC_Update(ctx, test[6].data, test[6].data_len))
crypto/openssl/test/hmactest.c
190
|| !TEST_true(HMAC_Update(ctx, test[6].data, test[6].data_len))
crypto/openssl/test/hmactest.c
229
|| !TEST_true(HMAC_Update(ctx, test[5].data, test[5].data_len))
crypto/openssl/test/hmactest.c
231
|| !TEST_false(HMAC_Update(ctx, test[5].data, test[5].data_len))
crypto/openssl/test/hmactest.c
255
|| !TEST_true(HMAC_Update(ctx, test[7].data, test[7].data_len))
crypto/openssl/test/hmactest.c
417
if (!TEST_true(HMAC_Update(ctx, buf, test_chunks[idx].chunk_size[i])))
lib/libradius/radlib.c
162
HMAC_Update(ctx, &h->out[POS_CODE], POS_AUTH - POS_CODE);
lib/libradius/radlib.c
164
HMAC_Update(ctx, &h->in[POS_AUTH], LEN_AUTH);
lib/libradius/radlib.c
166
HMAC_Update(ctx, &h->out[POS_AUTH], LEN_AUTH);
lib/libradius/radlib.c
167
HMAC_Update(ctx, &h->out[POS_ATTRS],
lib/libradius/radlib.c
249
HMAC_Update(hctx, &h->in[POS_CODE],
lib/libradius/radlib.c
251
HMAC_Update(hctx, &h->out[POS_AUTH],
lib/libradius/radlib.c
253
HMAC_Update(hctx, &resp[POS_ATTRS],
lib/libradius/radlib.c
345
HMAC_Update(hctx, resp, h->in_len);
tests/sys/kern/ktls_test.c
383
if (HMAC_Update(ctx, aad, aad_len) != 1) {
tests/sys/kern/ktls_test.c
389
if (HMAC_Update(ctx, buffer, len) != 1) {