diff options
| author | Cory Fields <[email protected]> | 2015-01-09 16:39:12 -0500 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2015-01-09 21:31:31 -0500 |
| commit | 488ed32f2ada1d1dd108fc245d025c4d5f252783 (patch) | |
| tree | 8fa890506b4568b7a5d25f3117cbdb7d6d6517ad /src/ecwrapper.cpp | |
| parent | Merge pull request #5617 (diff) | |
| download | discoin-488ed32f2ada1d1dd108fc245d025c4d5f252783.tar.xz discoin-488ed32f2ada1d1dd108fc245d025c4d5f252783.zip | |
consensus: guard against openssl's new strict DER checks
New versions of OpenSSL will reject non-canonical DER signatures. However,
it'll happily decode them. Decode then re-encode before verification in order
to ensure that it is properly consumed.
Diffstat (limited to 'src/ecwrapper.cpp')
| -rw-r--r-- | src/ecwrapper.cpp | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/ecwrapper.cpp b/src/ecwrapper.cpp index c29390eb9..33dd9a9a2 100644 --- a/src/ecwrapper.cpp +++ b/src/ecwrapper.cpp @@ -117,10 +117,20 @@ 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) + // 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; - return true; + + // -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) |