aboutsummaryrefslogtreecommitdiff
path: root/tests/fuzz/signature.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Copyright: Update to 2022mj-xmr2022-03-041-1/+1
|
* fuzz_tests: fix build error in signature fuzz testmoneromooo-monero2020-09-241-1/+1
|
* wallet: allow signing a message with spend or view keymoneromooo-monero2020-08-281-2/+2
|
* wallet2_api: implement runtime proxy configurationxiphon2020-07-201-1/+1
|
* Merge pull request #6512Alexander Blair2020-07-191-1/+1
|\ | | | | | | 5ef0607da Update copyright year to 2020 (SomaticFanatic)
| * Update copyright year to 2020SomaticFanatic2020-05-061-1/+1
| | | | | | | | Update copyright year to 2020
* | fix leaks in fuzz testsmoneromooo-monero2020-06-141-5/+8
| |
* | fuzz_tests: refactor and add OSS-Fuzz compatibilitymoneromooo-monero2020-05-151-52/+14
|/
* Added socks proxy (tor/i2pd/kovri) support to walletLee Clagett2019-03-251-1/+1
|
* Merge pull request #5274Riccardo Spagni2019-03-241-1/+1
|\ | | | | | | dc0c0c91 tests: disable wallet SSL init for tests involving wallet2 (moneromooo-monero)
| * tests: disable wallet SSL init for tests involving wallet2moneromooo-monero2019-03-121-1/+1
| |
* | Update 2019 copyrightbinaryFate2019-03-051-1/+1
|/
* Catch more exceptions in dtorsmoneromooo-monero2018-10-021-0/+2
| | | | Misc coverity reports
* fuzz: set address properlystoffu2018-08-141-0/+1
|
* fuzz_tests: set small subaddress lookahead for speedmoneromooo-monero2018-03-141-0/+1
|
* Stagenetstoffu2018-03-051-2/+2
|
* Readd copyright starting datexmr-eric2018-01-261-1/+1
|
* Update 2018 copyrightxmr-eric2018-01-261-1/+1
|
* tests: test wallets don't need a dummy temp file anymoremoneromooo-monero2017-12-191-9/+1
|
* move includes around to lessen overall loadmoneromooo-monero2017-12-161-1/+1
|
* move cryptonote command line options to cryptonote_coremoneromooo-monero2017-11-141-1/+0
| | | | Those have no reason to be in a generic module
* Subaddresseskenshi842017-10-071-3/+2
|
* Add fuzz testing using american fuzzy lopmoneromooo-monero2017-06-241-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.