Merge pull request #3637
6fd7ef2 Also switch the (unused) verification code to low-s instead of even-s. (Pieter Wuille)
This commit is contained in:
@@ -93,4 +93,21 @@ BOOST_AUTO_TEST_CASE(script_noncanon)
|
||||
}
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_CASE(script_signstrict)
|
||||
{
|
||||
for (int i=0; i<100; i++) {
|
||||
CKey key;
|
||||
key.MakeNewKey(i & 1);
|
||||
std::vector<unsigned char> sig;
|
||||
uint256 hash = GetRandHash();
|
||||
|
||||
BOOST_CHECK(key.Sign(hash, sig)); // Generate a random signature.
|
||||
BOOST_CHECK(key.GetPubKey().Verify(hash, sig)); // Check it.
|
||||
sig.push_back(0x01); // Append a sighash type.
|
||||
|
||||
BOOST_CHECK(IsCanonicalSignature(sig, SCRIPT_VERIFY_STRICTENC | SCRIPT_VERIFY_LOW_S));
|
||||
BOOST_CHECK(IsCanonicalSignature_OpenSSL(sig));
|
||||
}
|
||||
}
|
||||
|
||||
BOOST_AUTO_TEST_SUITE_END()
|
||||
|
||||
Reference in New Issue
Block a user