0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-02 09:46:52 -05:00

Merge bitcoin/bitcoin#29219: fuzz: Improve fuzzing stability for ellswift_roundtrip harness

154fcce55c [fuzz] Improve fuzzing stability for ellswift_roundtrip harness (dergoegge)

Pull request description:

  See #29018

ACKs for top commit:
  sipa:
    utACK 154fcce55c
  brunoerg:
    crACK 154fcce55c

Tree-SHA512: 1e1ee47467a4a0d3a4e79f672018b440d8b3ccafba7428d37b9d0b8d3afd07e3f64f53ee668ed8a6a9ad1919422b5970814eaf857890acae7546951d8cb141d6
This commit is contained in:
fanquake 2024-01-11 11:35:22 +00:00
commit 4ae5171d42
No known key found for this signature in database
GPG key ID: 2EEB9F5CC09526C1

View file

@ -322,7 +322,10 @@ FUZZ_TARGET(ellswift_roundtrip, .init = 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(bip324_ecdh, .init = initialize_key)