aboutsummaryrefslogtreecommitdiff
path: root/tests/fuzz/signature.cpp (follow)
AgeCommit message (Collapse)AuthorFilesLines
2019-03-25Added socks proxy (tor/i2pd/kovri) support to walletLee Clagett1-1/+1
2019-03-24Merge pull request #5274Riccardo Spagni1-1/+1
dc0c0c91 tests: disable wallet SSL init for tests involving wallet2 (moneromooo-monero)
2019-03-12tests: disable wallet SSL init for tests involving wallet2moneromooo-monero1-1/+1
2019-03-05Update 2019 copyrightbinaryFate1-1/+1
2018-10-02Catch more exceptions in dtorsmoneromooo-monero1-0/+2
Misc coverity reports
2018-08-14fuzz: set address properlystoffu1-0/+1
2018-03-14fuzz_tests: set small subaddress lookahead for speedmoneromooo-monero1-0/+1
2018-03-05Stagenetstoffu1-2/+2
2018-01-26Readd copyright starting datexmr-eric1-1/+1
2018-01-26Update 2018 copyrightxmr-eric1-1/+1
2017-12-19tests: test wallets don't need a dummy temp file anymoremoneromooo-monero1-9/+1
2017-12-16move includes around to lessen overall loadmoneromooo-monero1-1/+1
2017-11-14move cryptonote command line options to cryptonote_coremoneromooo-monero1-1/+0
Those have no reason to be in a generic module
2017-10-07Subaddresseskenshi841-3/+2
2017-06-24Add fuzz testing using american fuzzy lopmoneromooo-monero1-0/+105
Existing tests: block, transaction, signature, cold outputs, cold transaction. Data for these is in tests/data/fuzz. A convenience shell script is in contrib/fuzz_testing/fuzz.sh, eg: contrib/fuzz_testing/fuzz.sh signature The fuzzer will run indefinitely, ^C to stop. Fuzzing is currently supported for GCC only. I can't get CLANG to build Monero here as it dies on some system headers, so if someone wants to make it work on both, that'd be great. In particular, the __AFL_LOOP construct should be made to work so that a given run can fuzz multiple inputs, as the C++ load time is substantial.