diff options
author | lloyd <[email protected]> | 2013-12-25 20:53:24 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-12-25 20:53:24 +0000 |
commit | d5ebaa5e921a70cde791ac4d41035c3881712087 (patch) | |
tree | 459287fc101b06d81e5ba6d2119f42e6cf21dab0 /checks | |
parent | 94b7b07b34057474122a091b2b81b1cdcd9ee8db (diff) |
Store all DH group info in constant memory instead of Library_State config
Remove all groups under 1024 bits
Make workfactor.h public
Diffstat (limited to 'checks')
-rw-r--r-- | checks/pk.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/checks/pk.cpp b/checks/pk.cpp index eaa9c461b..a9093848a 100644 --- a/checks/pk.cpp +++ b/checks/pk.cpp @@ -728,15 +728,12 @@ void do_pk_keygen_tests(RandomNumberGenerator& rng) #endif #if defined(BOTAN_HAS_DSA) - DL_KEY(DSA_PrivateKey, "dsa/jce/512"); - DL_KEY(DSA_PrivateKey, "dsa/jce/768"); DL_KEY(DSA_PrivateKey, "dsa/jce/1024"); DL_KEY(DSA_PrivateKey, "dsa/botan/2048"); DL_KEY(DSA_PrivateKey, "dsa/botan/3072"); #endif #if defined(BOTAN_HAS_DIFFIE_HELLMAN) - DL_KEY(DH_PrivateKey, "modp/ietf/768"); DL_KEY(DH_PrivateKey, "modp/ietf/1024"); DL_KEY(DH_PrivateKey, "modp/ietf/2048"); DL_KEY(DH_PrivateKey, "modp/ietf/4096"); @@ -744,15 +741,12 @@ void do_pk_keygen_tests(RandomNumberGenerator& rng) #endif #if defined(BOTAN_HAS_NYBERG_RUEPPEL) - DL_KEY(NR_PrivateKey, "dsa/jce/512"); - DL_KEY(NR_PrivateKey, "dsa/jce/768"); DL_KEY(NR_PrivateKey, "dsa/jce/1024"); DL_KEY(NR_PrivateKey, "dsa/botan/2048"); DL_KEY(NR_PrivateKey, "dsa/botan/3072"); #endif #if defined(BOTAN_HAS_ELGAMAL) - DL_KEY(ElGamal_PrivateKey, "modp/ietf/768"); DL_KEY(ElGamal_PrivateKey, "modp/ietf/1024"); DL_KEY(ElGamal_PrivateKey, "dsa/jce/1024"); DL_KEY(ElGamal_PrivateKey, "dsa/botan/2048"); |