aboutsummaryrefslogtreecommitdiffstats
path: root/src/tests/test_ecdsa.cpp
diff options
context:
space:
mode:
authorRené Korthaus <[email protected]>2017-02-12 11:52:35 +0100
committerRené Korthaus <[email protected]>2017-02-12 11:52:35 +0100
commit40216bb25e8d20f195f31f137129db7edc06fc3c (patch)
tree2bdf16c7aacda6611bb4d3eeaf463795a7099a58 /src/tests/test_ecdsa.cpp
parent167edf2dc7cc1a304241f09dd7f86d3c68f50e06 (diff)
Add test vectors for invalid ECDSA public keys from FIPS 186-2
Diffstat (limited to 'src/tests/test_ecdsa.cpp')
-rw-r--r--src/tests/test_ecdsa.cpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/tests/test_ecdsa.cpp b/src/tests/test_ecdsa.cpp
index 90899e183..2cd6b3aae 100644
--- a/src/tests/test_ecdsa.cpp
+++ b/src/tests/test_ecdsa.cpp
@@ -68,8 +68,47 @@ class ECDSA_Keygen_Tests : public PK_Key_Generation_Test
std::string algo_name() const override { return "ECDSA"; }
};
+class ECDSA_Invalid_Key_Tests : public Text_Based_Test
+ {
+ public:
+ ECDSA_Invalid_Key_Tests() :
+ Text_Based_Test("pubkey/ecdsa_invalid.vec", "Group,InvalidKeyX,InvalidKeyY") {}
+
+ bool clear_between_callbacks() const override { return false; }
+
+ Test::Result run_one_test(const std::string&, const VarMap& vars) override
+ {
+ Test::Result result("ECDSA invalid keys");
+
+ const std::string group_id = get_req_str(vars, "Group");
+ Botan::EC_Group group(Botan::OIDS::lookup(group_id));
+ const Botan::BigInt x = get_req_bn(vars, "InvalidKeyX");
+ const Botan::BigInt y = get_req_bn(vars, "InvalidKeyY");
+
+ std::unique_ptr<Botan::PointGFp> public_point;
+
+ try
+ {
+ public_point.reset(new Botan::PointGFp(group.get_curve(), x, y));
+ }
+ catch(Botan::Invalid_Argument&)
+ {
+ // PointGFp() performs a range check on x, y in [0, p−1],
+ // which is also part of the EC public key checks, e.g.,
+ // in NIST SP800-56A rev2, sec. 5.6.2.3.2
+ result.test_success("public key fails check");
+ return result;
+ }
+
+ std::unique_ptr<Botan::Public_Key> key(new Botan::ECDSA_PublicKey(group, *public_point));
+ result.test_eq("public key fails check", key->check_key(Test::rng(), false), false);
+ return result;
+ }
+ };
+
BOTAN_REGISTER_TEST("ecdsa_sign", ECDSA_Signature_KAT_Tests);
BOTAN_REGISTER_TEST("ecdsa_keygen", ECDSA_Keygen_Tests);
+BOTAN_REGISTER_TEST("ecdsa_invalid", ECDSA_Invalid_Key_Tests);
#endif