rust-bitcoin-unsafe-fast/fuzz/fuzz_targets/hashes
Andrew Poelstra 830a6e1b0c
fuzz: delete CBOR test
We were using an outdated CBOR crate for MSRV reasons. But this old
crate is causing suprious test failures. So delete it. (Sadly, updating
the crate doesn't fix the issue, replacing it with ciborium breaks our
MSRV tests because it needs a more recent `half` dependency, and
replacing it with `minicbor` doesn't work because minicbor is not based
on serde. So we don't really have any options.)

In general, I am suspicious of this decode-then-reencode test. CBOR has
some ambiguity in integer encoding. Empirically it has seemed to
work for a long time, but this seems more like an indictment of our test
than a positive result.

Also, round-trip testing serde encoding of a byte vector is probably not
a great use of our fuzz resources. I don't believe we have ever had a
problem with this.

Fixes #2801
2024-05-24 14:32:19 +00:00
..
json.rs fuzz: disable tests unless 'cfg(fuzzing)' is passed; update README for reproducing failures 2023-04-27 00:24:53 +00:00
ripemd160.rs fuzz: don't fuzz hashes against RustCrypto 2023-04-27 00:24:53 +00:00
sha1.rs fuzz: don't fuzz hashes against RustCrypto 2023-04-27 00:24:53 +00:00
sha256.rs fuzz: don't fuzz hashes against RustCrypto 2023-04-27 00:24:53 +00:00
sha512.rs fuzz: don't fuzz hashes against RustCrypto 2023-04-27 00:24:53 +00:00
sha512_256.rs fuzz: don't fuzz hashes against RustCrypto 2023-04-27 00:24:53 +00:00