summaryrefslogtreecommitdiff
path: root/fuzz
Commit message (Collapse)AuthorAgeFilesLines
* Some minor tweaks to the fuzzing docsMatt Caswell2016-08-011-1/+1
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Include what we use.Ben Laurie2016-08-011-0/+2
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Fix various no-*s.Ben Laurie2016-08-011-0/+12
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Skip non-existing files.Kurt Roeckx2016-07-261-0/+2
| | | | | Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #1324
* Fix no-ctMatt Caswell2016-07-251-2/+10
| | | | | | Ensure that we don't build/run the ct fuzzing code if no-ct is used. Reviewed-by: Rich Salz <rsalz@openssl.org>
* Add all publicly avaiable asn1 types to the asn1 fuzzer.Kurt Roeckx2016-07-201-1/+108
| | | | | Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #1331
* Fix building with no-cmsMatt Caswell2016-07-191-2/+10
| | | | | | The new fuzzing code broke no-cms Reviewed-by: Richard Levitte <levitte@openssl.org>
* Use _NO_INST in some build.info filesRichard Levitte2016-07-181-2/+2
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Fix strict-warnings buildMatt Caswell2016-07-181-1/+3
| | | | | | | The i2d_SCT_LIST function is declared as __owur, therefore we need to check the result or a --strict-warnings build will fail. Reviewed-by: Rich Salz <rsalz@openssl.org>
* fuzzers: print and convert it backKurt Roeckx2016-07-162-2/+34
| | | | | Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #1323
* Make fuzzer and fuzz tester builds less magicRichard Levitte2016-07-162-83/+87
| | | | | | | | Instead of having fuzz/build.info.fuzz magically and conditionally included along with the other build.info files, incorporate it in fuzz/build.info and add the conditions there instead. Reviewed-by: Rich Salz <rsalz@openssl.org>
* Don't rely on implicit rsa.h inclusionViktor Dukhovni2016-07-101-0/+1
| | | | | | With no-deprecated, some nested includes don't happen by default. Reviewed-by: Rich Salz <rsalz@openssl.org>
* Add OPENSSL_NO_EC wrapperRich Salz2016-07-061-0/+2
| | | | Reviewed-by: Matt Caswell <matt@openssl.org>
* Update fuzz/README.mdRich Salz2016-07-041-10/+6
| | | | | Reviewed-by: Kurt Roeckx <kurt@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
* Simplify INCLUDE statements in build.info filesRichard Levitte2016-07-012-20/+20
| | | | | | | Now that INCLUDE considers both the source and build trees, no need for the rel2abs perl fragment hacks any more. Reviewed-by: Rich Salz <rsalz@openssl.org>
* fix 'set but not used' warningDr. Stephen Henson2016-07-011-2/+0
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Re-add x509 and crl fuzzerKurt Roeckx2016-07-014-2/+26
| | | | | | Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #1276
* Run the fuzzing corpora as tests.Ben Laurie2016-07-0112-121/+233
| | | | | Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
* Add comment about X509_printAlex Gaynor2016-06-281-0/+1
| | | | | | | Signed-off-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Emilia Kasper <emilia@openssl.org> GH: #1255
* Add x509 and crl corporaKurt Roeckx2016-06-25717-0/+14
| | | | | | Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #1229
* Add X509 and CRL fuzzerKurt Roeckx2016-06-253-1/+71
| | | | | | Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #1229
* Update fuzz corporaKurt Roeckx2016-06-23580-96/+106
| | | | | | Reviewed-by: Rich Salz <rsalz@openssl.org> MR: #2986
* Update fuzz corporaKurt Roeckx2016-06-143352-356/+1937
| | | | | | Reviewed-by: Rich Salz <rsalz@openssl.org> MR: #2949
* include stdlib for malloc() and free()Kurt Roeckx2016-06-111-0/+1
| | | | | | Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #1174
* Add fuzz corpora.Ben Laurie2016-06-101464-0/+373
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* Add support for fuzzing with AFLKurt Roeckx2016-06-0412-35/+118
| | | | | | Reviewed-by: Ben Laurie <ben@links.org> MR: #2740
* Add ct fuzzer.Ben Laurie2016-06-031-0/+24
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Linkify libfuzzer.Ben Laurie2016-06-031-1/+1
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Fuzz everything with every input.Ben Laurie2016-06-032-55/+43
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Sort.Ben Laurie2016-06-031-12/+12
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Add final(?) set of copyrights.Rich Salz2016-06-011-0/+7
| | | | | | | | | Add copyright to missing assembler files. Add copyrights to missing test/* files. Add copyrights Various source and misc files. Reviewed-by: Richard Levitte <levitte@openssl.org>
* Add fuzzing!Ben Laurie2016-05-0711-0/+733
Reviewed-by: Emilia Käsper <emilia@openssl.org>