Symbol: HMAC_Update
crypto/libressl/apps/openssl/speed.c
1069
if (!HMAC_Update(hctx, buf, lengths[j])) {
crypto/libressl/crypto/evp/p5_crpt2.c
121
if (!HMAC_Update(&hctx, salt, saltlen) ||
crypto/libressl/crypto/evp/p5_crpt2.c
122
!HMAC_Update(&hctx, itmp, 4) ||
crypto/libressl/crypto/evp/p5_crpt2.c
135
if (!HMAC_Update(&hctx, digtmp, mdlen) ||
crypto/libressl/crypto/hkdf/hkdf.c
100
!HMAC_Update(&hmac, &ctr, 1) ||
crypto/libressl/crypto/hkdf/hkdf.c
96
!HMAC_Update(&hmac, previous, digest_len)))
crypto/libressl/crypto/hkdf/hkdf.c
99
if (!HMAC_Update(&hmac, info, info_len) ||
crypto/libressl/crypto/hmac/hm_pmeth.c
150
if (!HMAC_Update(&hctx->ctx, data, count))
crypto/libressl/crypto/hmac/hmac.c
275
if (!HMAC_Update(&c, d, n))
crypto/libressl/crypto/pkcs12/p12_mutl.c
156
if (!HMAC_Update(hmac, p12->authsafes->d.data->data,
crypto/libressl/include/openssl/hmac.h
85
int HMAC_Update(HMAC_CTX *ctx, const unsigned char *data, size_t len);
crypto/libressl/ssl/ssl_srvr.c
2386
if (!HMAC_Update(hctx, key_name, sizeof(key_name)))
crypto/libressl/ssl/ssl_srvr.c
2388
if (!HMAC_Update(hctx, iv, EVP_CIPHER_CTX_iv_length(ctx)))
crypto/libressl/ssl/ssl_srvr.c
2390
if (!HMAC_Update(hctx, enc_session, enc_session_len))
crypto/libressl/ssl/t1_lib.c
1074
if (HMAC_Update(hctx, CBS_data(&ticket_name),
crypto/libressl/ssl/t1_lib.c
1077
if (HMAC_Update(hctx, CBS_data(&ticket_iv),
crypto/libressl/ssl/t1_lib.c
1080
if (HMAC_Update(hctx, CBS_data(&ticket_encdata),
crypto/libressl/ssl/tls13_client.c
1030
if (!HMAC_Update(hmac_ctx, transcript_hash, transcript_hash_len))
crypto/libressl/ssl/tls13_client.c
744
if (!HMAC_Update(hmac_ctx, ctx->hs->tls13.transcript_hash,
crypto/libressl/ssl/tls13_server.c
1060
if (!HMAC_Update(hmac_ctx, ctx->hs->tls13.transcript_hash,
crypto/libressl/ssl/tls13_server.c
822
if (!HMAC_Update(hmac_ctx, transcript_hash, transcript_hash_len))
usr.sbin/ppp/libradius/radlib.c
168
HMAC_Update(ctx, &h->out[POS_CODE], POS_AUTH - POS_CODE);
usr.sbin/ppp/libradius/radlib.c
170
HMAC_Update(ctx, &h->in[POS_AUTH], LEN_AUTH);
usr.sbin/ppp/libradius/radlib.c
172
HMAC_Update(ctx, &h->out[POS_AUTH], LEN_AUTH);
usr.sbin/ppp/libradius/radlib.c
173
HMAC_Update(ctx, &h->out[POS_ATTRS],
usr.sbin/ppp/libradius/radlib.c
246
HMAC_Update(hctx, &h->in[POS_CODE],
usr.sbin/ppp/libradius/radlib.c
248
HMAC_Update(hctx, &h->out[POS_AUTH],
usr.sbin/ppp/libradius/radlib.c
250
HMAC_Update(hctx, &resp[POS_ATTRS],
usr.sbin/ppp/libradius/radlib.c
323
HMAC_Update(hctx, resp, h->in_len);