Searched refs:ctx_tmp (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/crypto/openssl/crypto/kdf/
H A Dtls1_prf.c181 EVP_MD_CTX *ctx = NULL, *ctx_tmp = NULL, *ctx_init = NULL; local
192 ctx_tmp = EVP_MD_CTX_new();
194 if (ctx == NULL || ctx_tmp == NULL || ctx_init == NULL)
215 if (olen > (size_t)chunk && !EVP_MD_CTX_copy_ex(ctx_tmp, ctx))
227 if (!EVP_DigestSignFinal(ctx_tmp, A1, &A1_len))
241 EVP_MD_CTX_free(ctx_tmp);
/freebsd-13-stable/crypto/openssl/crypto/pkcs7/
H A Dpk7_doit.c651 EVP_MD_CTX *mdc, *ctx_tmp; local
666 ctx_tmp = EVP_MD_CTX_new();
667 if (ctx_tmp == NULL) {
748 if (!EVP_MD_CTX_copy_ex(ctx_tmp, mdc))
758 if (!do_pkcs7_signed_attrib(si, ctx_tmp))
768 if (!EVP_SignFinal(ctx_tmp, abuf, &abuflen, si->pkey)) {
815 EVP_MD_CTX_free(ctx_tmp);

Completed in 158 milliseconds