diff options
author | Wim Lewis <[email protected]> | 2017-01-17 22:55:16 -0800 |
---|---|---|
committer | Wim Lewis <[email protected]> | 2017-01-17 22:55:16 -0800 |
commit | 81da5f7f12eb1da9d9e8f4508d76681f527ad57c (patch) | |
tree | 00b418d637df8e5c83a8f729e365adcc4dc30100 /lib/crypto/test | |
parent | 24af5238589a2b0c4a153ead9e2f37506870f94c (diff) | |
download | otp-81da5f7f12eb1da9d9e8f4508d76681f527ad57c.tar.gz otp-81da5f7f12eb1da9d9e8f4508d76681f527ad57c.tar.bz2 otp-81da5f7f12eb1da9d9e8f4508d76681f527ad57c.zip |
Remove the RSA-1024 test case.
If the underlying library is in FIPS mode, it'll refuse to generate
keys shorter than 2048 bits.
Diffstat (limited to 'lib/crypto/test')
-rw-r--r-- | lib/crypto/test/crypto_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto/test/crypto_SUITE.erl b/lib/crypto/test/crypto_SUITE.erl index fbee0ad9b7..1d7037d003 100644 --- a/lib/crypto/test/crypto_SUITE.erl +++ b/lib/crypto/test/crypto_SUITE.erl @@ -1027,7 +1027,7 @@ group_config(rsa = Type, Config) -> rsa_oaep(), no_padding() ], - Generate = [{rsa, 1024, 3}, {rsa, 2048, 17}, {rsa, 3072, 65537}], + Generate = [{rsa, 2048, 3}, {rsa, 3072, 65537}], [{sign_verify, SignVerify}, {pub_priv_encrypt, PubPrivEnc}, {generate, Generate} | Config]; group_config(dss = Type, Config) -> Msg = dss_plain(), |