Home
last modified time | relevance | path

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

/third_party/openssl/test/
Dhmactest.c262 || !TEST_true(EVP_MD_CTX_copy(ctx_tmp, ctx))) in test_hmac_copy_uninited()
Devp_test.c444 if (!EVP_MD_CTX_copy(mctx_cpy, mctx)) { in digest_test_run()
/third_party/openssl/doc/man3/
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);
315 =item EVP_MD_CTX_copy()
646 The functions EVP_DigestInit(), EVP_DigestFinal() and EVP_MD_CTX_copy() are
DEVP_MD_meth_new.pod148 This copy function is called by EVP_MD_CTX_copy() and
/third_party/openssl/providers/implementations/macs/
Dkmac_prov.c226 if (!EVP_MD_CTX_copy(dst->ctx, src->ctx) in kmac_dup()
/third_party/openssl/crypto/evp/
Ddigest.c517 int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in) in EVP_MD_CTX_copy() function
/third_party/python/Modules/
D_hashopenssl.c468 result = EVP_MD_CTX_copy(new_ctx_p, self->ctx); in locked_EVP_MD_CTX_copy()
/third_party/openssl/ssl/record/
Dssl3_record.c1430 if (hmac == NULL || !EVP_MD_CTX_copy(hmac, hash)) { in tls1_mac()
/third_party/openssl/ohos_lite/include/openssl/
Devp.h558 __owur int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in);
/third_party/openssl/include/openssl/
Devp.h721 __owur int EVP_MD_CTX_copy(EVP_MD_CTX *out, const EVP_MD_CTX *in);
/third_party/node/src/
Dnode_crypto.cc4335 0 >= EVP_MD_CTX_copy(hash->mdctx_.get(), orig->mdctx_.get())) { in New()
/third_party/openssl/util/
Dlibcrypto.num3688 EVP_MD_CTX_copy 3772 3_0_0 EXIST::FUNCTION:
/third_party/openssl/
DCHANGES.md12770 EVP_MD_CTX_copy() changed to not require the destination to be
19021 * Add new function, EVP_MD_CTX_copy() to replace frequent use of memcpy.