aboutsummaryrefslogtreecommitdiff
path: root/src/test/fuzz/bitset.cpp
AgeCommit message (Collapse)Author
2024-07-01random: convert XoRoShiRo128PlusPlus into full RNGPieter Wuille
Convert XoRoShiRo128PlusPlus into a full RandomMixin-based RNG class, providing all utility functionality that FastRandomContext has. In doing so, it is renamed to InsecureRandomContext, highlighting its non-cryptographic nature. To do this, a fillrand fallback is added to RandomMixin (where it is used by InsecureRandomContext), but FastRandomContext still uses its own fillrand.
2024-07-01random: move XoRoShiRo128PlusPlus into random modulePieter Wuille
This is preparation for making it more generally accessible.
2024-06-12fuzz: Use std::span in FuzzBufferTypeMarcoFalke
2024-06-10tests: add fuzz tests for BitSetPieter Wuille