diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2013-11-30 19:02:26 +0100 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2013-11-30 19:02:26 +0100 |
commit | af8ad0f49f455ee269d99ab3025878dffc8a4919 (patch) | |
tree | f5d89147ca5c1fb28ab582d643efea6168546b03 | |
parent | c6bf6e1da1f70adfa2a91a36143f74e6234fe7ea (diff) | |
download | gnutls-af8ad0f49f455ee269d99ab3025878dffc8a4919.tar.gz |
adjusted subgroup bits to be compatible with DSA requirements.
-rw-r--r-- | lib/algorithms/secparams.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/algorithms/secparams.c b/lib/algorithms/secparams.c index 288243c36f..6455406593 100644 --- a/lib/algorithms/secparams.c +++ b/lib/algorithms/secparams.c @@ -39,7 +39,7 @@ typedef struct { static const gnutls_sec_params_entry sec_params[] = { {"Insecure", GNUTLS_SEC_PARAM_INSECURE, 0, 0, 0, 0, 0}, - {"Export", GNUTLS_SEC_PARAM_EXPORT, 42, 512, 0, 150, 0}, + {"Export", GNUTLS_SEC_PARAM_EXPORT, 42, 512, 0, 160, 0}, {"Very weak", GNUTLS_SEC_PARAM_VERY_WEAK, 64, 767, 0, 160, 0}, {"Weak", GNUTLS_SEC_PARAM_WEAK, 72, 1008, 1024, 160, 160}, #ifdef ENABLE_FIPS140 |