diff options
author | Jack Lloyd <[email protected]> | 2016-06-17 13:55:38 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2016-06-17 13:55:38 -0400 |
commit | 221104881940bf2c226cf1cf4c9ec643491440e9 (patch) | |
tree | d8891721e294437b3a2b510a41861925a95d7d13 /src/lib/pubkey/rsa/rsa.cpp | |
parent | 6816c9e71e01432792a997ad9a5d561b9cd94a48 (diff) | |
parent | 960adccc86396f5d2ef9ec1a7374bcc9de70b85a (diff) |
Merge GH #506 Fix test failures when SHA-1 is disabled
Diffstat (limited to 'src/lib/pubkey/rsa/rsa.cpp')
-rw-r--r-- | src/lib/pubkey/rsa/rsa.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/pubkey/rsa/rsa.cpp b/src/lib/pubkey/rsa/rsa.cpp index e12586014..6a645ec88 100644 --- a/src/lib/pubkey/rsa/rsa.cpp +++ b/src/lib/pubkey/rsa/rsa.cpp @@ -58,7 +58,7 @@ bool RSA_PrivateKey::check_key(RandomNumberGenerator& rng, bool strong) const if((m_e * m_d) % lcm(m_p - 1, m_q - 1) != 1) return false; - return KeyPair::signature_consistency_check(rng, *this, "EMSA4(SHA-1)"); + return KeyPair::signature_consistency_check(rng, *this, "EMSA4(SHA-256)"); } namespace { |