/freebsd/crypto/openssl/doc/life-cycles/ |
H A D | mac.dot | 11 begin -> newed [label="EVP_MAC_CTX_new"];
|
/freebsd/crypto/openssl/crypto/evp/ |
H A D | mac_lib.c | 22 EVP_MAC_CTX *EVP_MAC_CTX_new(EVP_MAC *mac) in EVP_MAC_CTX_new() function 281 if ((ctx = EVP_MAC_CTX_new(mac)) != NULL in EVP_Q_mac()
|
/freebsd/crypto/openssl/demos/mac/ |
H A D | gmac.c | 82 mctx = EVP_MAC_CTX_new(mac); in main()
|
H A D | siphash.c | 70 mctx = EVP_MAC_CTX_new(mac); in main()
|
H A D | cmac-aes256.c | 91 mctx = EVP_MAC_CTX_new(mac); in main()
|
H A D | hmac-sha512.c | 102 mctx = EVP_MAC_CTX_new(mac); in main()
|
H A D | poly1305.c | 111 mctx = EVP_MAC_CTX_new(mac); in main()
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | EVP_MAC-KMAC.pod | 94 ctx = EVP_MAC_CTX_new(mac); 95 /* The mac can be freed after it is used by EVP_MAC_CTX_new */
|
H A D | life_cycle-mac.pod | 54 | EVP_MAC_CTX_new 97 EVP_MAC_CTX_new newed 122 <tr><th style="border:1px solid" align="left">EVP_MAC_CTX_new</th>
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | EVP_MAC.pod | 8 EVP_MAC_CTX, EVP_MAC_CTX_new, EVP_MAC_CTX_free, EVP_MAC_CTX_dup, 36 EVP_MAC_CTX *EVP_MAC_CTX_new(EVP_MAC *mac); 112 EVP_MAC_CTX_new() creates a new context for the MAC type I<mac>. 375 EVP_MAC_CTX_new() and EVP_MAC_CTX_dup() return a pointer to a newly 434 || (ctx = EVP_MAC_CTX_new(mac)) == NULL
|
H A D | SSL_CTX_set_tlsext_ticket_key_cb.pod | 52 initialised with L<EVP_CIPHER_CTX_reset(3)> and L<EVP_MAC_CTX_new(3)> 123 initialised with L<EVP_MAC_CTX_new(3)> and the digest set with
|
H A D | HMAC.pod | 78 Applications should instead use L<EVP_MAC_CTX_new(3)>, L<EVP_MAC_CTX_free(3)>,
|
/freebsd/crypto/openssl/apps/ |
H A D | mac.c | 151 ctx = EVP_MAC_CTX_new(mac); in mac_main()
|
H A D | fipsinstall.c | 440 ctx = EVP_MAC_CTX_new(mac); in fipsinstall_main()
|
H A D | speed.c | 2024 loopargs[i].mctx = EVP_MAC_CTX_new(mac); in speed_main() 2182 loopargs[i].mctx = EVP_MAC_CTX_new(mac); in speed_main() 2327 loopargs[i].mctx = EVP_MAC_CTX_new(mac); in speed_main()
|
/freebsd/crypto/openssl/providers/implementations/signature/ |
H A D | mac_legacy_sig.c | 72 pmacctx->macctx = EVP_MAC_CTX_new(mac); in mac_newctx()
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_hmac.c | 243 *ctx = EVP_MAC_CTX_new(mac); in __hmac_sha1_init()
|
/freebsd/crypto/openssl/providers/fips/ |
H A D | self_test.c | 196 ctx = EVP_MAC_CTX_new(mac); in verify_integrity()
|
/freebsd/crypto/openssl/providers/common/ |
H A D | provider_util.c | 318 *macctx = mac == NULL ? NULL : EVP_MAC_CTX_new(mac); in ossl_prov_macctx_load_from_params()
|
/freebsd/crypto/openssl/crypto/modes/ |
H A D | siv128.c | 197 || (ctx->mac_ctx_init = EVP_MAC_CTX_new(ctx->mac)) == NULL in ossl_siv128_init()
|
/freebsd/crypto/openssl/test/ |
H A D | bad_dtls_test.c | 310 || !TEST_ptr(ctx = EVP_MAC_CTX_new(hmac))) in send_record()
|
/freebsd/contrib/wpa/src/crypto/ |
H A D | crypto_openssl.c | 1366 ctx->ctx = EVP_MAC_CTX_new(mac); in crypto_hash_init() 1541 ctx = EVP_MAC_CTX_new(hmac); in openssl_hmac_vector() 1824 !(ctx = EVP_MAC_CTX_new(emac)) || in omac1_aes_vector() 4791 hctx = EVP_MAC_CTX_new(hmac); in hpke_labeled_extract() 4901 hctx = EVP_MAC_CTX_new(hmac); in hpke_labeled_expand()
|
/freebsd/crypto/openssl/include/openssl/ |
H A D | evp.h | 1208 EVP_MAC_CTX *EVP_MAC_CTX_new(EVP_MAC *mac);
|
/freebsd/secure/lib/libcrypto/ |
H A D | Version.map | 4546 EVP_MAC_CTX_new;
|
/freebsd/crypto/openssl/ssl/ |
H A D | t1_lib.c | 3428 if (mac == NULL || (ret->ctx = EVP_MAC_CTX_new(mac)) == NULL) in ssl_hmac_new()
|