mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
f5056577ba
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)
11 lines
327 B
Plaintext
11 lines
327 B
Plaintext
LIBS=../../libcrypto
|
|
$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
|