diff options
author | lloyd <[email protected]> | 2010-09-07 19:39:09 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2010-09-07 19:39:09 +0000 |
commit | 8427d5367b400ea3fa934bc7e7cb2e42fa45efce (patch) | |
tree | 3e0edfcad0d09b482589e0a9b906973ebc0d52a8 /checks | |
parent | 93950b744b55b004050b7f2c36a81e33fce5c5e7 (diff) |
Call test that was defined but not used
Diffstat (limited to 'checks')
-rw-r--r-- | checks/ecdsa.cpp | 9 |
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(); |