mirror of
https://github.com/dashpay/dash.git
synced 2024-12-24 19:42:46 +01:00
Merge bitcoin/bitcoin#29219: fuzz: Improve fuzzing stability for ellswift_roundtrip harness
154fcce55c84c251fad8d280eafb3c0a5284fcd4 [fuzz] Improve fuzzing stability for ellswift_roundtrip harness (dergoegge) Pull request description: See #29018 ACKs for top commit: sipa: utACK 154fcce55c84c251fad8d280eafb3c0a5284fcd4 brunoerg: crACK 154fcce55c84c251fad8d280eafb3c0a5284fcd4 Tree-SHA512: 1e1ee47467a4a0d3a4e79f672018b440d8b3ccafba7428d37b9d0b8d3afd07e3f64f53ee668ed8a6a9ad1919422b5970814eaf857890acae7546951d8cb141d6
This commit is contained in:
parent
b091329599
commit
2e41562d81
@ -274,7 +274,10 @@ FUZZ_TARGET_INIT(ellswift_roundtrip, initialize_key)
|
||||
auto encoded_ellswift = key.EllSwiftCreate(ent32);
|
||||
auto decoded_pubkey = encoded_ellswift.Decode();
|
||||
|
||||
assert(key.VerifyPubKey(decoded_pubkey));
|
||||
uint256 hash{ConsumeUInt256(fdp)};
|
||||
std::vector<unsigned char> sig;
|
||||
key.Sign(hash, sig);
|
||||
assert(decoded_pubkey.Verify(hash, sig));
|
||||
}
|
||||
|
||||
FUZZ_TARGET_INIT(bip324_ecdh, initialize_key)
|
||||
|
Loading…
Reference in New Issue
Block a user