diff options
author | Gregory Maxwell <greg@xiph.org> | 2015-01-09 19:56:28 -0800 |
---|---|---|
committer | Gregory Maxwell <greg@xiph.org> | 2015-01-09 20:21:19 -0800 |
commit | 4f73a8f64d1555b4053f2a0a5c79083e50a0ce21 (patch) | |
tree | 44083128b139ad0171401972140430fd99cb4d32 /src | |
parent | d0c97bbe70a6876dadedfbf672387371c9c849d1 (diff) | |
parent | 8dccba6a45db0466370726ed462b9da2eae43bce (diff) |
Merge pull request #5634
8dccba6 fail immediately on an empty signature (Cory Fields)
dad7764 depends: bump openssl to 1.0.1k (Cory Fields)
488ed32 consensus: guard against openssl's new strict DER checks (Cory Fields)
Diffstat (limited to 'src')
-rw-r--r-- | src/ecwrapper.cpp | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/src/ecwrapper.cpp b/src/ecwrapper.cpp index c29390eb98..0236e90c16 100644 --- a/src/ecwrapper.cpp +++ b/src/ecwrapper.cpp @@ -117,10 +117,23 @@ bool CECKey::SetPubKey(const unsigned char* pubkey, size_t size) { } bool CECKey::Verify(const uint256 &hash, const std::vector<unsigned char>& vchSig) { - // -1 = error, 0 = bad sig, 1 = good - if (ECDSA_verify(0, (unsigned char*)&hash, sizeof(hash), &vchSig[0], vchSig.size(), pkey) != 1) + if (vchSig.empty()) return false; - return true; + + // New versions of OpenSSL will reject non-canonical DER signatures. de/re-serialize first. + unsigned char *norm_der = NULL; + ECDSA_SIG *norm_sig = ECDSA_SIG_new(); + const unsigned char* sigptr = &vchSig[0]; + d2i_ECDSA_SIG(&norm_sig, &sigptr, vchSig.size()); + int derlen = i2d_ECDSA_SIG(norm_sig, &norm_der); + ECDSA_SIG_free(norm_sig); + if (derlen <= 0) + return false; + + // -1 = error, 0 = bad sig, 1 = good + bool ret = ECDSA_verify(0, (unsigned char*)&hash, sizeof(hash), norm_der, derlen, pkey) == 1; + OPENSSL_free(norm_der); + return ret; } bool CECKey::Recover(const uint256 &hash, const unsigned char *p64, int rec) |