mirror of
https://github.com/QuasarApp/openssl.git
synced 2025-04-27 18:24:37 +00:00
Adapt all build.info and test recipes to the new $disabled{'deprecated-x.y'}
Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11027)
This commit is contained in:
parent
b05d632732
commit
0e43960e88
@ -25,9 +25,9 @@ SOURCE[../../providers/libfips.a]=$COMMON
|
||||
DEFINE[../../libcrypto]=$DESDEF
|
||||
DEFINE[../../providers/libfips.a]=$DESDEF
|
||||
|
||||
IF[{- $disabled{"deprecated"}
|
||||
&& !$disabled{"mdc2"}
|
||||
&& (defined $config{"api"} && $config{"api"} >= 30000) -}]
|
||||
# When all deprecated symbols are removed, libcrypto doesn't export the
|
||||
# DES functions, so we must include them directly in liblegacy.a
|
||||
IF[{- $disabled{'deprecated-3.0'} && !$disabled{"mdc2"} -}]
|
||||
SOURCE[../../providers/liblegacy.a]=set_key.c $DESASM
|
||||
DEFINE[../../providers/liblegacy.a]=$DESDEF
|
||||
ENDIF
|
||||
|
@ -19,7 +19,7 @@ SOURCE[../../libcrypto]=$COMMON\
|
||||
pkey_mac.c \
|
||||
legacy_sha.c
|
||||
|
||||
IF[{- !$disabled{deprecated} || $config{api} < 30000 -}]
|
||||
IF[{- !$disabled{'deprecated-3.0'} -}]
|
||||
SOURCE[../../libcrypto]=p_enc.c p_dec.c
|
||||
ENDIF
|
||||
|
||||
|
@ -4,7 +4,6 @@ SOURCE[../../libcrypto]=md2_dgst.c md2_one.c
|
||||
|
||||
# When all deprecated symbols are removed, libcrypto doesn't export the
|
||||
# MD2 functions, so we must include them directly in liblegacy.a
|
||||
IF[{- $disabled{"deprecated"}
|
||||
&& (defined $config{"api"} && $config{"api"} >= 30000) -}]
|
||||
IF[{- $disabled{'deprecated-3.0'} -}]
|
||||
SOURCE[../../providers/liblegacy.a]=md2_dgst.c md2_one.c
|
||||
ENDIF
|
||||
|
@ -4,7 +4,6 @@ SOURCE[../../libcrypto]=md4_dgst.c md4_one.c
|
||||
|
||||
# When all deprecated symbols are removed, libcrypto doesn't export the
|
||||
# MD4 functions, so we must include them directly in liblegacy.a
|
||||
IF[{- $disabled{"deprecated"}
|
||||
&& (defined $config{"api"} && $config{"api"} >= 30000) -}]
|
||||
IF[{- $disabled{'deprecated-3.0'} -}]
|
||||
SOURCE[../../providers/liblegacy.a]=md4_dgst.c md4_one.c
|
||||
ENDIF
|
||||
|
@ -4,7 +4,6 @@ SOURCE[../../libcrypto]=mdc2dgst.c mdc2_one.c
|
||||
|
||||
# When all deprecated symbols are removed, libcrypto doesn't export the
|
||||
# MDC2 functions, so we must include them directly in liblegacy.a
|
||||
IF[{- $disabled{"deprecated"}
|
||||
&& (defined $config{"api"} && $config{"api"} >= 30000) -}]
|
||||
IF[{- $disabled{'deprecated-3.0'} -}]
|
||||
SOURCE[../../providers/liblegacy.a]=mdc2dgst.c mdc2_one.c
|
||||
ENDIF
|
||||
|
@ -21,8 +21,7 @@ DEFINE[../../libcrypto]=$RMD160DEF
|
||||
|
||||
# When all deprecated symbols are removed, libcrypto doesn't export the
|
||||
# RIPEMD160 functions, so we must include them directly in liblegacy.a
|
||||
IF[{- $disabled{"deprecated"}
|
||||
&& (defined $config{"api"} && $config{"api"} >= 30000) -}]
|
||||
IF[{- $disabled{'deprecated-3.0'} -}]
|
||||
SOURCE[../../providers/liblegacy.a]=rmd_dgst.c rmd_one.c $RMD160ASM
|
||||
DEFINE[../../providers/liblegacy.a]=$RMD160DEF
|
||||
ENDIF
|
||||
|
@ -26,8 +26,7 @@ DEFINE[../../libcrypto]=$WPDEF
|
||||
|
||||
# When all deprecated symbols are removed, libcrypto doesn't export the
|
||||
# WHIRLPOOL functions, so we must include them directly in liblegacy.a
|
||||
IF[{- $disabled{"deprecated"}
|
||||
&& (defined $config{"api"} && $config{"api"} >= 30000) -}]
|
||||
IF[{- $disabled{'deprecated-3.0'} -}]
|
||||
SOURCE[../../providers/liblegacy.a]=wp_dgst.c $WPASM
|
||||
DEFINE[../../providers/liblegacy.a]=$WPDEF
|
||||
ENDIF
|
||||
|
@ -171,8 +171,7 @@ IF[{- !$disabled{tests} -}]
|
||||
INCLUDE[evp_pkey_provided_test]=../include ../apps/include
|
||||
DEPEND[evp_pkey_provided_test]=../libcrypto libtestutil.a
|
||||
|
||||
IF[{- !$disabled{"deprecated"}
|
||||
|| (defined $config{"api"} && $config{"api"} < 30000) -}]
|
||||
IF[{- !$disabled{'deprecated-3.0'} -}]
|
||||
PROGRAMS{noinst}=igetest bftest casttest
|
||||
|
||||
SOURCE[igetest]=igetest.c
|
||||
|
@ -16,7 +16,6 @@ use OpenSSL::Test::Utils;
|
||||
setup("test_bf");
|
||||
|
||||
plan skip_all => "Low-level Blowfish APIs are disabled in this build"
|
||||
if disabled("deprecated")
|
||||
&& (!defined config("api") || config("api") >= 30000);
|
||||
if disabled('deprecated-3.0');
|
||||
|
||||
simple_test("test_bf", "bftest", "bf");
|
||||
|
@ -17,7 +17,6 @@ use OpenSSL::Test::Utils;
|
||||
setup("test_cast");
|
||||
|
||||
plan skip_all => "Low-level CAST APIs are disabled in this build"
|
||||
if disabled("deprecated")
|
||||
&& (!defined config("api") || config("api") >= 30000);
|
||||
if disabled('deprecated-3.0');
|
||||
|
||||
simple_test("test_cast", "casttest", "cast");
|
||||
|
@ -76,11 +76,12 @@ my @sha_tests =
|
||||
expected => '$6$rounds=1000$roundstoolow$kUMsbe306n21p9R.FRkW3IGn.S9NPN0x50YhH1xhLsPuWGsUSklZt58jaTfF4ZEQpyUNGc0dqbpBYYBaHHrsX.' }
|
||||
);
|
||||
|
||||
plan tests => (disabled("des") || disabled("deprecated") ? 9 : 11) + scalar @sha_tests;
|
||||
plan tests => (disabled("des") || disabled('deprecated-3.0') ? 9 : 11) + scalar @sha_tests;
|
||||
|
||||
|
||||
ok(compare1stline_re([qw{openssl passwd password}], '^.{13}\R$'),
|
||||
'crypt password with random salt') if !disabled("des") && !disabled("deprecated");
|
||||
'crypt password with random salt')
|
||||
if !disabled("des") && !disabled('deprecated-3.0');
|
||||
ok(compare1stline_re([qw{openssl passwd -1 password}], '^\$1\$.{8}\$.{22}\R$'),
|
||||
'BSD style MD5 password with random salt');
|
||||
ok(compare1stline_re([qw{openssl passwd -apr1 password}], '^\$apr1\$.{8}\$.{22}\R$'),
|
||||
@ -91,7 +92,8 @@ ok(compare1stline_re([qw{openssl passwd -6 password}], '^\$6\$.{16}\$.{86}\R$'),
|
||||
'Apache SHA512 password with random salt');
|
||||
|
||||
ok(compare1stline([qw{openssl passwd -salt xx password}], 'xxj31ZMTZzkVA'),
|
||||
'crypt password with salt xx') if !disabled("des") && !disabled("deprecated");
|
||||
'crypt password with salt xx')
|
||||
if !disabled("des") && !disabled('deprecated-3.0');
|
||||
ok(compare1stline([qw{openssl passwd -salt xxxxxxxx -1 password}], '$1$xxxxxxxx$UYCIxa628.9qXjpQCjM4a.'),
|
||||
'BSD style MD5 password with salt xxxxxxxx');
|
||||
ok(compare1stline([qw{openssl passwd -salt xxxxxxxx -apr1 password}], '$apr1$xxxxxxxx$dxHfLAsjHkDRmG83UXe8K0'),
|
||||
|
@ -17,7 +17,6 @@ use OpenSSL::Test::Utils;
|
||||
setup("test_ige");
|
||||
|
||||
plan skip_all => "AES_ige support is disabled in this build"
|
||||
if disabled("deprecated")
|
||||
&& (!defined config("api") || config("api") >= 30000);
|
||||
if disabled('deprecated-3.0');
|
||||
|
||||
simple_test("test_ige", "igetest");
|
||||
|
Loading…
x
Reference in New Issue
Block a user