aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_ecdsa.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/test_ecdsa.cpp')
-rw-r--r--src/tests/test_ecdsa.cpp65
1 files changed, 10 insertions, 55 deletions
diff --git a/src/tests/test_ecdsa.cpp b/src/tests/test_ecdsa.cpp
index 53f32ab49..8d385b4bf 100644
--- a/src/tests/test_ecdsa.cpp
+++ b/src/tests/test_ecdsa.cpp
@@ -5,10 +5,11 @@
*/
#include "tests.h"
-#include "test_pubkey.h"
#if defined(BOTAN_HAS_ECDSA)
+#include "test_pubkey.h"
+
#include <botan/pubkey.h>
#include <botan/ecdsa.h>
#include <botan/oids.h>
@@ -24,7 +25,6 @@ size_t ecdsa_sig_kat(const std::string& group_id,
const std::string& x,
const std::string& hash,
const std::string& msg,
- const std::string& nonce,
const std::string& signature)
{
auto& rng = test_rng();
@@ -38,73 +38,28 @@ size_t ecdsa_sig_kat(const std::string& group_id,
PK_Signer sign(ecdsa, padding);
return validate_signature(verify, sign, "ECDSA/" + group_id + '/' + hash,
- msg, rng, nonce, signature);
- }
-
-size_t ecc_point_mul(const std::string& group_id,
- const std::string& m_s,
- const std::string& X_s,
- const std::string& Y_s)
- {
- EC_Group group(OIDS::lookup(group_id));
-
- const BigInt m(m_s);
- const BigInt X(X_s);
- const BigInt Y(Y_s);
-
- PointGFp p = group.get_base_point() * m;
-
- size_t fails = 0;
-
- if(p.get_affine_x() != X)
- {
- std::cout << p.get_affine_x() << " != " << X << std::endl;
- ++fails;
- }
-
- if(p.get_affine_y() != Y)
- {
- std::cout << p.get_affine_y() << " != " << Y << std::endl;
- ++fails;
- }
-
- return fails;
+ msg, rng, signature);
}
}
-#endif
-
-size_t test_ecc_pointmul()
+size_t test_ecdsa()
{
size_t fails = 0;
-#if defined(BOTAN_HAS_ECC_GROUP)
- std::ifstream ecc_mul(PK_TEST_DATA_DIR "/ecc.vec");
+ std::ifstream ecdsa_sig(TEST_DATA_DIR_PK "/ecdsa.vec");
- fails += run_tests_bb(ecc_mul, "ECC Point Mult", "Y", false,
+ fails += run_tests_bb(ecdsa_sig, "ECDSA Signature", "Signature", false,
[](std::map<std::string, std::string> m) -> size_t
{
- return ecc_point_mul(m["Group"], m["m"], m["X"], m["Y"]);
+ return ecdsa_sig_kat(m["Group"], m["X"], m["Hash"], m["Msg"], m["Signature"]);
});
-#endif
return fails;
}
-size_t test_ecdsa()
- {
- size_t fails = 0;
-
-#if defined(BOTAN_HAS_ECDSA)
- std::ifstream ecdsa_sig(PK_TEST_DATA_DIR "/ecdsa.vec");
+#else
- fails += run_tests_bb(ecdsa_sig, "ECDSA Signature", "Signature", false,
- [](std::map<std::string, std::string> m) -> size_t
- {
- return ecdsa_sig_kat(m["Group"], m["X"], m["Hash"], m["Msg"], m["Nonce"], m["Signature"]);
- });
-#endif
+SKIP_TEST(ecdsa);
- return fails;
- }
+#endif // BOTAN_HAS_ECDSA