/third_party/openssl/demos/mac/ |
H A D | cmac-aes256.c | 115 if (!EVP_MAC_final(mctx, NULL, &out_len, 0)) { in main() 116 fprintf(stderr, "EVP_MAC_final() failed\n"); in main() 125 if (!EVP_MAC_final(mctx, out, &out_len, out_len)) { in main() 126 fprintf(stderr, "EVP_MAC_final() failed\n"); in main()
|
H A D | hmac-sha512.c | 126 if (!EVP_MAC_final(mctx, NULL, &out_len, 0)) { in main() 127 fprintf(stderr, "EVP_MAC_final() failed\n"); in main() 136 if (!EVP_MAC_final(mctx, out, &out_len, out_len)) { in main() 137 fprintf(stderr, "EVP_MAC_final() failed\n"); in main()
|
H A D | siphash.c | 102 if (!EVP_MAC_final(mctx, out, &out_len, sizeof(out))) { in main() 103 fprintf(stderr, "EVP_MAC_final() failed\n"); in main()
|
H A D | poly1305.c | 180 if (!EVP_MAC_final(mctx, out, &out_len, sizeof(out))) { in main() 181 fprintf(stderr, "EVP_MAC_final() failed\n"); in main()
|
H A D | gmac.c | 118 if (!EVP_MAC_final(mctx, out, &out_len, sizeof(out))) { in main() 119 fprintf(stderr, "EVP_MAC_final() failed\n"); in main()
|
/third_party/node/deps/openssl/openssl/providers/implementations/kdfs/ |
H A D | tls1_prf.c | 312 if (!EVP_MAC_final(ctx_Ai, Ai, &Ai_len, sizeof(Ai))) in tls1_prf_P_hash() 333 if (!EVP_MAC_final(ctx, Ai, &Ai_len, sizeof(Ai))) in tls1_prf_P_hash() 338 if (!EVP_MAC_final(ctx, out, NULL, olen)) in tls1_prf_P_hash()
|
H A D | sskdf.c | 260 if (!EVP_MAC_final(ctx, out, NULL, len)) in SSKDF_mac_kdm() 267 if (!EVP_MAC_final(ctx, mac, NULL, out_len)) in SSKDF_mac_kdm()
|
H A D | kbkdf.c | 194 || !EVP_MAC_final(ctx, k_i, NULL, h)) in derive()
|
/third_party/node/deps/openssl/openssl/crypto/evp/ |
H A D | mac_lib.c | 174 int EVP_MAC_final(EVP_MAC_CTX *ctx, in EVP_MAC_final() function 286 && EVP_MAC_final(ctx, out, &len, outsize)) { in EVP_Q_mac() 289 if (out != NULL && !EVP_MAC_final(ctx, out, NULL, len)) { in EVP_Q_mac()
|
/third_party/openssl/crypto/evp/ |
H A D | mac_lib.c | 174 int EVP_MAC_final(EVP_MAC_CTX *ctx, in EVP_MAC_final() function 286 && EVP_MAC_final(ctx, out, &len, outsize)) { in EVP_Q_mac() 289 if (out != NULL && !EVP_MAC_final(ctx, out, NULL, len)) { in EVP_Q_mac()
|
/third_party/openssl/providers/implementations/kdfs/ |
H A D | tls1_prf.c | 312 if (!EVP_MAC_final(ctx_Ai, Ai, &Ai_len, sizeof(Ai))) in tls1_prf_P_hash() 333 if (!EVP_MAC_final(ctx, Ai, &Ai_len, sizeof(Ai))) in tls1_prf_P_hash() 338 if (!EVP_MAC_final(ctx, out, NULL, olen)) in tls1_prf_P_hash()
|
H A D | sskdf.c | 260 if (!EVP_MAC_final(ctx, out, NULL, len)) in SSKDF_mac_kdm() 267 if (!EVP_MAC_final(ctx, mac, NULL, out_len)) in SSKDF_mac_kdm()
|
H A D | kbkdf.c | 194 || !EVP_MAC_final(ctx, k_i, NULL, h)) in derive()
|
/third_party/node/deps/openssl/openssl/providers/implementations/rands/ |
H A D | drbg_hmac.c | 71 || !EVP_MAC_final(ctx, hmac->K, NULL, sizeof(hmac->K))) in do_hmac() 77 && EVP_MAC_final(ctx, hmac->V, NULL, sizeof(hmac->V)); in do_hmac() 221 if (!EVP_MAC_final(ctx, out, NULL, outlen)) in drbg_hmac_generate() 225 if (!EVP_MAC_final(ctx, hmac->V, NULL, sizeof(hmac->V))) in drbg_hmac_generate()
|
/third_party/openssl/providers/implementations/rands/ |
H A D | drbg_hmac.c | 71 || !EVP_MAC_final(ctx, hmac->K, NULL, sizeof(hmac->K))) in do_hmac() 77 && EVP_MAC_final(ctx, hmac->V, NULL, sizeof(hmac->V)); in do_hmac() 221 if (!EVP_MAC_final(ctx, out, NULL, outlen)) in drbg_hmac_generate() 225 if (!EVP_MAC_final(ctx, hmac->V, NULL, sizeof(hmac->V))) in drbg_hmac_generate()
|
/third_party/node/deps/openssl/openssl/apps/ |
H A D | mac.c | 201 if (!EVP_MAC_final(ctx, NULL, &len, 0)) { in mac_main() 202 BIO_printf(bio_err, "EVP_MAC_final failed\n"); in mac_main() 210 if (!EVP_MAC_final(ctx, buf, &len, BUFSIZE)) { in mac_main() 211 BIO_printf(bio_err, "EVP_MAC_final failed\n"); in mac_main()
|
H A D | fipsinstall.c | 93 if (!EVP_MAC_final(ctx, out, out_len, outsz)) in do_mac()
|
/third_party/openssl/apps/ |
H A D | mac.c | 201 if (!EVP_MAC_final(ctx, NULL, &len, 0)) { in mac_main() 202 BIO_printf(bio_err, "EVP_MAC_final failed\n"); in mac_main() 210 if (!EVP_MAC_final(ctx, buf, &len, BUFSIZE)) { in mac_main() 211 BIO_printf(bio_err, "EVP_MAC_final failed\n"); in mac_main()
|
H A D | fipsinstall.c | 93 if (!EVP_MAC_final(ctx, out, out_len, outsz)) in do_mac()
|
/third_party/node/deps/openssl/openssl/crypto/modes/ |
H A D | siv128.c | 117 if (!EVP_MAC_final(mac_ctx, out->byte, &out_len, sizeof(out->byte)) in siv128_do_s2v_p() 202 || !EVP_MAC_final(mac_ctx, ctx->d.byte, &out_len, in ossl_siv128_init() 257 || !EVP_MAC_final(mac_ctx, mac_out.byte, &out_len, in ossl_siv128_aad()
|
/third_party/openssl/crypto/modes/ |
H A D | siv128.c | 117 if (!EVP_MAC_final(mac_ctx, out->byte, &out_len, sizeof(out->byte)) in siv128_do_s2v_p() 202 || !EVP_MAC_final(mac_ctx, ctx->d.byte, &out_len, in ossl_siv128_init() 257 || !EVP_MAC_final(mac_ctx, mac_out.byte, &out_len, in ossl_siv128_aad()
|
/third_party/node/deps/openssl/openssl/providers/implementations/signature/ |
H A D | mac_legacy_sig.c | 161 return EVP_MAC_final(pmacctx->macctx, mac, maclen, macsize); in mac_digest_sign_final()
|
/third_party/openssl/providers/implementations/signature/ |
H A D | mac_legacy_sig.c | 161 return EVP_MAC_final(pmacctx->macctx, mac, maclen, macsize); in mac_digest_sign_final()
|
/third_party/node/deps/openssl/openssl/providers/fips/ |
H A D | self_test.c | 213 if (!EVP_MAC_final(ctx, out, &out_len, sizeof(out))) in verify_integrity()
|
/third_party/openssl/providers/fips/ |
H A D | self_test.c | 215 if (!EVP_MAC_final(ctx, out, &out_len, sizeof(out))) in verify_integrity()
|