Lines Matching defs:src
35 int ossl_prov_cipher_copy(PROV_CIPHER *dst, const PROV_CIPHER *src)
37 if (src->alloc_cipher != NULL && !EVP_CIPHER_up_ref(src->alloc_cipher))
40 if (src->engine != NULL && !ENGINE_init(src->engine)) {
41 EVP_CIPHER_free(src->alloc_cipher);
45 dst->engine = src->engine;
46 dst->cipher = src->cipher;
47 dst->alloc_cipher = src->alloc_cipher;
151 int ossl_prov_digest_copy(PROV_DIGEST *dst, const PROV_DIGEST *src)
153 if (src->alloc_md != NULL && !EVP_MD_up_ref(src->alloc_md))
156 if (src->engine != NULL && !ENGINE_init(src->engine)) {
157 EVP_MD_free(src->alloc_md);
161 dst->engine = src->engine;
162 dst->md = src->md;
163 dst->alloc_md = src->alloc_md;