aboutsummaryrefslogtreecommitdiffstats
path: root/checks
diff options
context:
space:
mode:
authorlloyd <[email protected]>2010-09-07 19:39:09 +0000
committerlloyd <[email protected]>2010-09-07 19:39:09 +0000
commit8427d5367b400ea3fa934bc7e7cb2e42fa45efce (patch)
tree3e0edfcad0d09b482589e0a9b906973ebc0d52a8 /checks
parent93950b744b55b004050b7f2c36a81e33fce5c5e7 (diff)
Call test that was defined but not used
Diffstat (limited to 'checks')
-rw-r--r--checks/ecdsa.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/checks/ecdsa.cpp b/checks/ecdsa.cpp
index e3fde803d..d9a1784fe 100644
--- a/checks/ecdsa.cpp
+++ b/checks/ecdsa.cpp
@@ -38,10 +38,10 @@ std::string to_hex(const SecureVector<byte>& bin)
/**
-* Tests whether the the signing routine will work correctly in case the integer e
-* that is constructed from the message (thus the hash value) is larger than n, the order of the base point.
-* Tests the signing function of the pk signer object
-*/
+* Tests whether the the signing routine will work correctly in case
+* the integer e that is constructed from the message (thus the hash
+* value) is larger than n, the order of the base point. Tests the
+* signing function of the pk signer object */
void test_hash_larger_than_n(RandomNumberGenerator& rng)
{
@@ -441,6 +441,7 @@ u32bit do_ecdsa_tests(Botan::RandomNumberGenerator& rng)
{
std::cout << "Testing ECDSA (InSiTo unit tests): ";
+ test_hash_larger_than_n(rng);
test_decode_ecdsa_X509();
test_decode_ver_link_SHA256();
test_decode_ver_link_SHA1();