Home
last modified time | relevance | path

Searched refs:EVP_MAC_update (Results 1 - 25 of 33) sorted by relevance

12

/third_party/node/deps/openssl/openssl/providers/implementations/kdfs/
H A Dkbkdf.c186 if (mode == FEEDBACK && !EVP_MAC_update(ctx, k_i, k_i_len)) in derive()
189 if (!EVP_MAC_update(ctx, (unsigned char *)&i, 4) in derive()
190 || !EVP_MAC_update(ctx, label, label_len) in derive()
191 || (has_separator && !EVP_MAC_update(ctx, &zero, 1)) in derive()
192 || !EVP_MAC_update(ctx, context, context_len) in derive()
193 || (has_l && !EVP_MAC_update(ctx, (unsigned char *)&l, 4)) in derive()
H A Dtls1_prf.c307 if (seed != NULL && !EVP_MAC_update(ctx_Ai, seed, seed_len)) in tls1_prf_P_hash()
321 if (!EVP_MAC_update(ctx, Ai, Ai_len)) in tls1_prf_P_hash()
329 if (seed != NULL && !EVP_MAC_update(ctx, seed, seed_len)) in tls1_prf_P_hash()
H A Dsskdf.c255 && EVP_MAC_update(ctx, c, sizeof(c)) in SSKDF_mac_kdm()
256 && EVP_MAC_update(ctx, z, z_len) in SSKDF_mac_kdm()
257 && EVP_MAC_update(ctx, info, info_len))) in SSKDF_mac_kdm()
/third_party/openssl/providers/implementations/kdfs/
H A Dkbkdf.c186 if (mode == FEEDBACK && !EVP_MAC_update(ctx, k_i, k_i_len)) in derive()
189 if (!EVP_MAC_update(ctx, (unsigned char *)&i, 4) in derive()
190 || !EVP_MAC_update(ctx, label, label_len) in derive()
191 || (has_separator && !EVP_MAC_update(ctx, &zero, 1)) in derive()
192 || !EVP_MAC_update(ctx, context, context_len) in derive()
193 || (has_l && !EVP_MAC_update(ctx, (unsigned char *)&l, 4)) in derive()
H A Dtls1_prf.c307 if (seed != NULL && !EVP_MAC_update(ctx_Ai, seed, seed_len)) in tls1_prf_P_hash()
321 if (!EVP_MAC_update(ctx, Ai, Ai_len)) in tls1_prf_P_hash()
329 if (seed != NULL && !EVP_MAC_update(ctx, seed, seed_len)) in tls1_prf_P_hash()
H A Dsskdf.c255 && EVP_MAC_update(ctx, c, sizeof(c)) in SSKDF_mac_kdm()
256 && EVP_MAC_update(ctx, z, z_len) in SSKDF_mac_kdm()
257 && EVP_MAC_update(ctx, info, info_len))) in SSKDF_mac_kdm()
/third_party/node/deps/openssl/openssl/providers/implementations/rands/
H A Ddrbg_hmac.c66 || !EVP_MAC_update(ctx, hmac->V, hmac->blocklen) in do_hmac()
67 || !EVP_MAC_update(ctx, &inbyte, 1) in do_hmac()
68 || !(in1 == NULL || in1len == 0 || EVP_MAC_update(ctx, in1, in1len)) in do_hmac()
69 || !(in2 == NULL || in2len == 0 || EVP_MAC_update(ctx, in2, in2len)) in do_hmac()
70 || !(in3 == NULL || in3len == 0 || EVP_MAC_update(ctx, in3, in3len)) in do_hmac()
76 && EVP_MAC_update(ctx, hmac->V, hmac->blocklen) in do_hmac()
217 || !EVP_MAC_update(ctx, temp, hmac->blocklen)) in drbg_hmac_generate()
/third_party/openssl/providers/implementations/rands/
H A Ddrbg_hmac.c66 || !EVP_MAC_update(ctx, hmac->V, hmac->blocklen) in do_hmac()
67 || !EVP_MAC_update(ctx, &inbyte, 1) in do_hmac()
68 || !(in1 == NULL || in1len == 0 || EVP_MAC_update(ctx, in1, in1len)) in do_hmac()
69 || !(in2 == NULL || in2len == 0 || EVP_MAC_update(ctx, in2, in2len)) in do_hmac()
70 || !(in3 == NULL || in3len == 0 || EVP_MAC_update(ctx, in3, in3len)) in do_hmac()
76 && EVP_MAC_update(ctx, hmac->V, hmac->blocklen) in do_hmac()
217 || !EVP_MAC_update(ctx, temp, hmac->blocklen)) in drbg_hmac_generate()
/third_party/node/deps/openssl/openssl/crypto/modes/
H A Dsiv128.c102 if (!EVP_MAC_update(mac_ctx, in, len - SIV_LEN)) in siv128_do_s2v_p()
106 if (!EVP_MAC_update(mac_ctx, t.byte, SIV_LEN)) in siv128_do_s2v_p()
114 if (!EVP_MAC_update(mac_ctx, t.byte, SIV_LEN)) in siv128_do_s2v_p()
201 || !EVP_MAC_update(mac_ctx, zero, sizeof(zero)) in ossl_siv128_init()
256 || !EVP_MAC_update(mac_ctx, aad, len) in ossl_siv128_aad()
/third_party/openssl/crypto/modes/
H A Dsiv128.c102 if (!EVP_MAC_update(mac_ctx, in, len - SIV_LEN)) in siv128_do_s2v_p()
106 if (!EVP_MAC_update(mac_ctx, t.byte, SIV_LEN)) in siv128_do_s2v_p()
114 if (!EVP_MAC_update(mac_ctx, t.byte, SIV_LEN)) in siv128_do_s2v_p()
201 || !EVP_MAC_update(mac_ctx, zero, sizeof(zero)) in ossl_siv128_init()
256 || !EVP_MAC_update(mac_ctx, aad, len) in ossl_siv128_aad()
/third_party/openssl/test/
H A Dbad_dtls_test.c318 || !EVP_MAC_update(ctx, epoch, 2) in send_record()
319 || !EVP_MAC_update(ctx, seq, 6) in send_record()
320 || !EVP_MAC_update(ctx, &type, 1) in send_record()
321 || !EVP_MAC_update(ctx, ver, 2) /* Version */ in send_record()
322 || !EVP_MAC_update(ctx, lenbytes, 2) /* Length */ in send_record()
323 || !EVP_MAC_update(ctx, enc, len) /* Finally the data itself */ in send_record()
/third_party/node/deps/openssl/openssl/crypto/evp/
H A Dmac_lib.c124 int EVP_MAC_update(EVP_MAC_CTX *ctx, const unsigned char *data, size_t datalen) in EVP_MAC_update() function
285 && EVP_MAC_update(ctx, data, datalen) in EVP_Q_mac()
/third_party/openssl/crypto/evp/
H A Dmac_lib.c124 int EVP_MAC_update(EVP_MAC_CTX *ctx, const unsigned char *data, size_t datalen) in EVP_MAC_update() function
285 && EVP_MAC_update(ctx, data, datalen) in EVP_Q_mac()
/third_party/openssl/demos/mac/
H A Dsiphash.c96 if (!EVP_MAC_update(mctx, data, sizeof(data))) { in main()
97 fprintf(stderr, "EVP_MAC_update() failed\n"); in main()
H A Dpoly1305.c174 if (!EVP_MAC_update(mctx, test_m, sizeof(test_m))) { in main()
175 fprintf(stderr, "EVP_MAC_update() failed\n"); in main()
H A Dcmac-aes256.c109 if (!EVP_MAC_update(mctx, data, sizeof(data))) { in main()
110 fprintf(stderr, "EVP_MAC_update() failed\n"); in main()
H A Dgmac.c112 if (!EVP_MAC_update(mctx, data, sizeof(data))) { in main()
113 fprintf(stderr, "EVP_MAC_update() failed\n"); in main()
H A Dhmac-sha512.c120 if (!EVP_MAC_update(mctx, data, sizeof(data))) { in main()
121 fprintf(stderr, "EVP_MAC_update() failed\n"); in main()
/third_party/node/deps/openssl/openssl/providers/implementations/signature/
H A Dmac_legacy_sig.c150 return EVP_MAC_update(pmacctx->macctx, data, datalen); in mac_digest_sign_update()
/third_party/node/deps/openssl/openssl/apps/
H A Dmac.c195 if (!EVP_MAC_update(ctx, buf, i)) { in mac_main()
196 BIO_printf(bio_err, "EVP_MAC_update failed\n"); in mac_main()
H A Dfipsinstall.c89 if (i < 0 || !EVP_MAC_update(ctx, tmp, i)) in do_mac()
/third_party/openssl/providers/implementations/signature/
H A Dmac_legacy_sig.c150 return EVP_MAC_update(pmacctx->macctx, data, datalen); in mac_digest_sign_update()
/third_party/openssl/apps/
H A Dmac.c195 if (!EVP_MAC_update(ctx, buf, i)) { in mac_main()
196 BIO_printf(bio_err, "EVP_MAC_update failed\n"); in mac_main()
/third_party/node/deps/openssl/openssl/providers/fips/
H A Dself_test.c210 if (!EVP_MAC_update(ctx, buf, bytes_read)) in verify_integrity()
/third_party/openssl/providers/fips/
H A Dself_test.c212 if (!EVP_MAC_update(ctx, buf, bytes_read)) in verify_integrity()

Completed in 14 milliseconds

12