EVP_CIPHER_CTX_copy
if (!EVP_CIPHER_CTX_copy(out->cctx, in->cctx))
ret = EVP_CIPHER_CTX_copy(dctx->cipher, ctx->cipher);
if (out != NULL && !EVP_CIPHER_CTX_copy(out, in)) {
if (!EVP_CIPHER_CTX_copy(dest->cipher_ctx, src->cipher_ctx))
int EVP_CIPHER_CTX_copy(EVP_CIPHER_CTX *out, const EVP_CIPHER_CTX *in);
if (!EVP_CIPHER_CTX_copy(dst->ecb_ctx, src->ecb_ctx))
if (!EVP_CIPHER_CTX_copy(dst->ctx, src->ctx)
if (!TEST_true(EVP_CIPHER_CTX_copy(ctx2, ctx)))
if (!EVP_CIPHER_CTX_copy(ctx, ctx_base)) {