Home
last modified time | relevance | path

Searched refs:EVP_MD_CTX_copy (Results 1 – 12 of 12) sorted by relevance

/freebsd/crypto/openssl/test/
H A Dhmactest.c262 || !TEST_true(EVP_MD_CTX_copy(ctx_tmp, ctx))) in test_hmac_copy_uninited()
H A Devp_test.c444 if (!EVP_MD_CTX_copy(mctx_cpy, mctx)) { in digest_test_run()
/freebsd/crypto/openssl/doc/man3/
H A DEVP_DigestInit.pod7 EVP_MD_CTX_new, EVP_MD_CTX_reset, EVP_MD_CTX_free, EVP_MD_CTX_copy,
71 int EVP_MD_CTX_copy(EVP_MD_CTX *out, EVP_MD_CTX *in);
314 =item EVP_MD_CTX_copy()
657 The functions EVP_DigestInit(), EVP_DigestFinal() and EVP_MD_CTX_copy() are
H A DEVP_MD_meth_new.pod149 This copy function is called by EVP_MD_CTX_copy() and
/freebsd/crypto/openssl/providers/implementations/macs/
H A Dkmac_prov.c226 if (!EVP_MD_CTX_copy(dst->ctx, src->ctx) in kmac_dup()
/freebsd/crypto/openssl/crypto/evp/
H A Ddigest.c517 int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in) in EVP_MD_CTX_copy() function
/freebsd/crypto/openssl/ssl/record/
H A Dssl3_record.c1456 if (hmac == NULL || !EVP_MD_CTX_copy(hmac, hash)) { in tls1_mac()
/freebsd/crypto/openssl/include/openssl/
H A Devp.h723 __owur int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in);
/freebsd/secure/lib/libcrypto/
H A DVersion.map1491 EVP_MD_CTX_copy;
/freebsd/secure/lib/libcrypto/man/man3/
H A DMakefile1899 MLINKS+= EVP_DigestInit.3 EVP_MD_CTX_copy.3
/freebsd/crypto/openssl/util/
H A Dlibcrypto.num3688 EVP_MD_CTX_copy 3772 3_0_0 EXIST::FUNCTION:
/freebsd/crypto/openssl/
H A DCHANGES.md13139 EVP_MD_CTX_copy() changed to not require the destination to be
19390 * Add new function, EVP_MD_CTX_copy() to replace frequent use of memcpy.