From: Dr. Stephen Henson Date: Sun, 16 Oct 2011 12:31:49 +0000 (+0000) Subject: L=3072, N=256 provides 128 bits of security not 112. X-Git-Tag: OpenSSL-fips-2_0-rc1~54 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bc1b04d255eb31ba3cf80a82d98adbfbbadf621f;p=openssl L=3072, N=256 provides 128 bits of security not 112. --- diff --git a/crypto/dsa/dsa_gen.c b/crypto/dsa/dsa_gen.c index c013a7e660..d5f4debc92 100644 --- a/crypto/dsa/dsa_gen.c +++ b/crypto/dsa/dsa_gen.c @@ -405,7 +405,7 @@ static int dsa2_valid_parameters(size_t L, size_t N) if (L == 2048 && N == 256) return 112; if (L == 3072 && N == 256) - return 112; + return 128; return 0; }