summaryrefslogtreecommitdiffstats
path: root/crypto/evp/build.info
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-01-11 00:04:56 +0100
committerRichard Levitte <levitte@openssl.org>2020-01-25 13:16:09 +0100
commit9420b403b72ecd74f55804f494346c926aa609c9 (patch)
treec3c8ee361a7fb4f02f8a6d6727de226938743f59 /crypto/evp/build.info
parent3472082b4b6d73e0803a7c47f03e96ec0a69f77b (diff)
EVP: Adapt EVP_PKEY Seal and Open for provider keys
This affects the following function, which can now deal with provider side keys: - EVP_SealInit() - EVP_OpenInit() Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/10808)
Diffstat (limited to 'crypto/evp/build.info')
-rw-r--r--crypto/evp/build.info6
1 files changed, 5 insertions, 1 deletions
diff --git a/crypto/evp/build.info b/crypto/evp/build.info
index 7f566b80ce..d3ebac9f4e 100644
--- a/crypto/evp/build.info
+++ b/crypto/evp/build.info
@@ -8,7 +8,7 @@ SOURCE[../../libcrypto]=$COMMON\
e_des.c e_bf.c e_idea.c e_des3.c e_camellia.c\
e_rc4.c e_aes.c names.c e_seed.c e_aria.c e_sm4.c \
e_xcbc_d.c e_rc2.c e_cast.c e_rc5.c m_null.c \
- p_open.c p_seal.c p_sign.c p_verify.c p_enc.c p_dec.c \
+ p_open.c p_seal.c p_sign.c p_verify.c \
bio_md.c bio_b64.c bio_enc.c evp_err.c e_null.c \
c_allc.c c_alld.c bio_ok.c \
evp_pkey.c evp_pbe.c p5_crpt.c p5_crpt2.c pbe_scrypt.c \
@@ -18,6 +18,10 @@ SOURCE[../../libcrypto]=$COMMON\
pkey_mac.c \
legacy_sha.c
+IF[{- !$disabled{deprecated} || $config{api} < 30000 -}]
+ SOURCE[../../libcrypto]=p_enc.c p_dec.c
+ENDIF
+
IF[{- !$disabled{md2} -}]
SOURCE[../../libcrypto]=legacy_md2.c
ENDIF