Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/test/
H A Devp_extra_test2.c3362 EVP_MD_CTX *copyctx = NULL; in test_evp_md_ctx_dup() local
3367 && TEST_ptr(copyctx = EVP_MD_CTX_dup(mdctx)); in test_evp_md_ctx_dup()
3370 EVP_MD_CTX_free(copyctx); in test_evp_md_ctx_dup()
3377 EVP_MD_CTX *copyctx = NULL; in test_evp_md_ctx_copy() local
3382 && TEST_ptr(copyctx = EVP_MD_CTX_new()) in test_evp_md_ctx_copy()
3383 && TEST_true(EVP_MD_CTX_copy_ex(copyctx, mdctx)); in test_evp_md_ctx_copy()
3386 EVP_MD_CTX_free(copyctx); in test_evp_md_ctx_copy()
/freebsd/crypto/openssl/providers/implementations/ciphers/
H A Dcipher_sm4.c38 in->base.hw->copyctx(&ret->base, &in->base); in sm4_dupctx()
H A Dcipher_camellia.c44 in->base.hw->copyctx(&ret->base, &in->base); in camellia_dupctx()
H A Dcipher_aria.c38 in->base.hw->copyctx(&ret->base, &in->base); in aria_dupctx()
H A Dcipher_aes.c45 in->base.hw->copyctx(&ret->base, &in->base); in aes_dupctx()
H A Dcipher_tdes_common.c52 in->base.hw->copyctx(&ret->base, &in->base); in ossl_tdes_dupctx()
H A Dcipher_des.c58 in->base.hw->copyctx(&ret->base, &in->base); in des_dupctx()
H A Dcipher_sm4_xts.c117 in->base.hw->copyctx(&ret->base, &in->base); in sm4_xts_dupctx()
H A Dcipher_aes_xts.c172 in->base.hw->copyctx(&ret->base, &in->base); in aes_xts_dupctx()
/freebsd/crypto/openssl/crypto/evp/
H A Ddigest.c620 if (out->digest == in->digest && in->digest->copyctx != NULL) { in EVP_MD_CTX_copy_ex()
622 in->digest->copyctx(out->algctx, in->algctx); in EVP_MD_CTX_copy_ex()
1115 if (md->copyctx == NULL) in evp_md_from_algorithm()
1116 md->copyctx = OSSL_FUNC_digest_copyctx(fns); in evp_md_from_algorithm()
/freebsd/crypto/openssl/providers/implementations/include/prov/
H A Dciphercommon.h105 void (*copyctx)(PROV_CIPHER_CTX *dst, const PROV_CIPHER_CTX *src); member
/freebsd/crypto/openssl/include/crypto/
H A Devp.h289 OSSL_FUNC_digest_copyctx_fn *copyctx; member