diff options
author | Hans Nilsson <[email protected]> | 2017-04-11 12:00:42 +0200 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2017-04-12 12:22:37 +0200 |
commit | f1dc990550c01ad7373c4c4850f7d5b0cb924296 (patch) | |
tree | af0efc0bb77691eed264c4648440e81746598981 /lib/crypto/test/crypto_SUITE.erl | |
parent | 8e2e8a5f813874134a601db551f2b4d5bb0abec5 (diff) | |
download | otp-f1dc990550c01ad7373c4c4850f7d5b0cb924296.tar.gz otp-f1dc990550c01ad7373c4c4850f7d5b0cb924296.tar.bz2 otp-f1dc990550c01ad7373c4c4850f7d5b0cb924296.zip |
crypto: Increase prime to pass with FIPS-enabled cryptolib
Fix for problem introduced with OTP-14140
Diffstat (limited to 'lib/crypto/test/crypto_SUITE.erl')
-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 1b7456af18..54bd729e7e 100644 --- a/lib/crypto/test/crypto_SUITE.erl +++ b/lib/crypto/test/crypto_SUITE.erl @@ -1135,7 +1135,7 @@ group_config(rsa = Type, Config) -> rsa_oaep(), no_padding() ], - Generate = [{rsa, 2048, 3}, {rsa, 3072, 65537}], + Generate = [{rsa, 2048, 17}, {rsa, 3072, 65537}], [{sign_verify, SignVerify}, {pub_priv_encrypt, PubPrivEnc}, {generate, Generate} | Config]; group_config(dss = Type, Config) -> Msg = dss_plain(), |