Symbol: EVP_MAC_CTX_new
crypto/krb5/src/lib/crypto/openssl/cmac.c
64
ctx = EVP_MAC_CTX_new(mac);
crypto/krb5/src/lib/crypto/openssl/hmac.c
146
ctx = EVP_MAC_CTX_new(mac);
crypto/openssl/apps/fipsinstall.c
867
ctx = EVP_MAC_CTX_new(mac);
crypto/openssl/apps/mac.c
154
ctx = EVP_MAC_CTX_new(mac);
crypto/openssl/apps/speed.c
786
loopargs[i].mctx = EVP_MAC_CTX_new(*mac);
crypto/openssl/crypto/evp/mac_lib.c
292
if ((ctx = EVP_MAC_CTX_new(mac)) != NULL
crypto/openssl/crypto/modes/siv128.c
195
|| (ctx->mac_ctx_init = EVP_MAC_CTX_new(ctx->mac)) == NULL
crypto/openssl/crypto/slh_dsa/slh_dsa_hash_ctx.c
52
ret->hmac_ctx = EVP_MAC_CTX_new(key->hmac);
crypto/openssl/demos/mac/cmac-aes256.c
131
mctx = EVP_MAC_CTX_new(mac);
crypto/openssl/demos/mac/gmac.c
82
mctx = EVP_MAC_CTX_new(mac);
crypto/openssl/demos/mac/hmac-sha512.c
212
mctx = EVP_MAC_CTX_new(mac);
crypto/openssl/demos/mac/poly1305.c
111
mctx = EVP_MAC_CTX_new(mac);
crypto/openssl/demos/mac/siphash.c
70
mctx = EVP_MAC_CTX_new(mac);
crypto/openssl/fuzz/provider.c
467
if ((ctx = EVP_MAC_CTX_new(evp_mac)) == NULL
crypto/openssl/include/openssl/evp.h
1254
EVP_MAC_CTX *EVP_MAC_CTX_new(EVP_MAC *mac);
crypto/openssl/providers/common/provider_util.c
326
*macctx = mac == NULL ? NULL : EVP_MAC_CTX_new(mac);
crypto/openssl/providers/fips/self_test.c
213
EVP_MAC_CTX *ctx = EVP_MAC_CTX_new(mac);
crypto/openssl/providers/fips/self_test.c
268
ctx = EVP_MAC_CTX_new(mac);
crypto/openssl/providers/implementations/kdfs/argon2.c
791
if ((ctx = EVP_MAC_CTX_new(mac)) == NULL)
crypto/openssl/providers/implementations/rands/drbg_hmac.c
472
*macctx = EVP_MAC_CTX_new(mac);
crypto/openssl/providers/implementations/signature/mac_legacy_sig.c
70
pmacctx->macctx = EVP_MAC_CTX_new(mac);
crypto/openssl/ssl/quic/quic_srt_gen.c
34
if ((srt_gen->mac_ctx = EVP_MAC_CTX_new(srt_gen->mac)) == NULL)
crypto/openssl/ssl/record/methods/tls13_meth.c
47
|| (mac_ctx = rl->mac_ctx = EVP_MAC_CTX_new(mac)) == NULL) {
crypto/openssl/ssl/t1_lib.c
4838
if (mac == NULL || (ret->ctx = EVP_MAC_CTX_new(mac)) == NULL)
crypto/openssl/test/bad_dtls_test.c
505
|| !TEST_ptr(ctx = EVP_MAC_CTX_new(hmac)))
crypto/openssl/test/evp_test.c
1948
if ((ctx = EVP_MAC_CTX_new(expected->mac)) == NULL) {