aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-10-01 05:46:20 -0400
committerJack Lloyd <[email protected]>2017-10-01 05:46:20 -0400
commitc868a71bdf77222f1700d3932d97d2a21e25b953 (patch)
tree4d83b3a39333f584b33a08aec6228b9ce8a30da6
parenta1129cfb4a9c97f6a5d31442e9d6aebbd5e39fe7 (diff)
Remove 2048-bit keygen tests
Slow, and doesn't buy us much vs just the 1024 bit test.
-rw-r--r--src/tests/test_dh.cpp2
-rw-r--r--src/tests/test_elg.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tests/test_dh.cpp b/src/tests/test_dh.cpp
index e6e35e164..8a7fb169c 100644
--- a/src/tests/test_dh.cpp
+++ b/src/tests/test_dh.cpp
@@ -141,7 +141,7 @@ class Diffie_Hellman_Keygen_Tests final : public PK_Key_Generation_Test
public:
std::vector<std::string> keygen_params() const override
{
- return { "modp/ietf/1024", "modp/ietf/2048" };
+ return { "modp/ietf/1024" };
}
std::string algo_name() const override
{
diff --git a/src/tests/test_elg.cpp b/src/tests/test_elg.cpp
index ffa58f74f..abd4dd5fc 100644
--- a/src/tests/test_elg.cpp
+++ b/src/tests/test_elg.cpp
@@ -45,7 +45,7 @@ class ElGamal_Keygen_Tests final : public PK_Key_Generation_Test
public:
std::vector<std::string> keygen_params() const override
{
- return { "modp/ietf/1024", "modp/ietf/2048" };
+ return { "modp/ietf/1024" };
}
std::string algo_name() const override
{