summaryrefslogtreecommitdiff
path: root/validat1.cpp
diff options
context:
space:
mode:
authorLinmao Song <linmao.song@ixledger.com>2018-01-11 01:18:15 +0000
committerJeffrey Walton <noloader@gmail.com>2018-01-10 20:18:15 -0500
commit1823b9d9c4076c09de038987ea2b6f851ef514d6 (patch)
tree1b48b3fbd14f5cd9054bee2a0e229a71ba054938 /validat1.cpp
parent2c295b2454c6ebb6e389a58e0cfae471479afe07 (diff)
downloadcryptopp-git-1823b9d9c4076c09de038987ea2b6f851ef514d6.tar.gz
Fix error in bits2octets: should use the base point's bit count, instead of the hash value's. Also add test case for GetRandom, with original data from RFC6979 (#560)
Diffstat (limited to 'validat1.cpp')
-rw-r--r--validat1.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/validat1.cpp b/validat1.cpp
index 5c67f0c7..3f80f97a 100644
--- a/validat1.cpp
+++ b/validat1.cpp
@@ -201,6 +201,7 @@ bool ValidateAll(bool thorough)
pass=ValidateECP() && pass;
pass=ValidateEC2N() && pass;
pass=ValidateECDSA() && pass;
+ pass=ValidateECDSA_RFC6979() && pass;
pass=ValidateECGDSA(thorough) && pass;
pass=ValidateESIGN() && pass;