summaryrefslogtreecommitdiffstats
path: root/crypto/idea/build.info
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2020-04-09 04:47:46 +0200
committerShane Lontis <shane.lontis@oracle.com>2020-04-09 04:47:46 +0200
commitf5056577ba08b3694aab2722eae1c97bf00acc80 (patch)
tree00492b31c1e6b69164d5a3be50557bac18cdcd2e /crypto/idea/build.info
parentDocument the new X509_STORE_CTX_new_with_libctx() function (diff)
downloadopenssl-f5056577ba08b3694aab2722eae1c97bf00acc80.tar.xz
openssl-f5056577ba08b3694aab2722eae1c97bf00acc80.zip
Move legacy ciphers into the legacy provider
DES, idea, seed, rc2, rc4, rc5, cast and blowfish have been moved out of the default provider. Code shared between desx and tdes has been moved into a seperate file (cipher_tdes_common.c). 3 test recipes failed due to using app/openssl calls that used legacy ciphers. These calls have been updated to supply both the default and legacy providers. Fixed openssl app '-provider' memory leak Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11419)
Diffstat (limited to 'crypto/idea/build.info')
-rw-r--r--crypto/idea/build.info11
1 files changed, 9 insertions, 2 deletions
diff --git a/crypto/idea/build.info b/crypto/idea/build.info
index 2326123797..5441351b9c 100644
--- a/crypto/idea/build.info
+++ b/crypto/idea/build.info
@@ -1,3 +1,10 @@
LIBS=../../libcrypto
-SOURCE[../../libcrypto]=\
- i_cbc.c i_cfb64.c i_ofb64.c i_ecb.c i_skey.c
+$ALL=i_cbc.c i_cfb64.c i_ofb64.c i_ecb.c i_skey.c
+
+SOURCE[../../libcrypto]=$ALL
+
+# When all deprecated symbols are removed, libcrypto doesn't export the
+# idea functions, so we must include them directly in liblegacy.a
+IF[{- $disabled{'deprecated-3.0'} -}]
+ SOURCE[../../providers/liblegacy.a]=$ALL
+ENDIF