summaryrefslogtreecommitdiffstats
path: root/fuzz/build.info (follow)
Commit message (Collapse)AuthorAgeFilesLines
* RAND_METHOD deprecation: fuzzerPauli2021-02-231-10/+10
| | | | | Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/13652)
* Add CMP fuzzing to fuzz/cmp.c, including a couple of helpers in crypto/cmp/Dr. David von Oheimb2020-04-181-0/+17
| | | | | | Reviewed-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11386)
* Build: Change all _NO_INST to use attributes instead.Richard Levitte2019-01-221-6/+6
| | | | | | | | | This means that all PROGRAMS_NO_INST, LIBS_NO_INST, ENGINES_NO_INST and SCRIPTS_NO_INST are changed to be PROGRAM, LIBS, ENGINES and SCRIPTS with the associated attribute 'noinst'. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/7581)
* ASN1 fuzzer: Use d2i_TYPE / i2d_TYPE functionsKurt Roeckx2017-11-031-2/+2
| | | | | | Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> GH: #4648
* And client fuzzerKurt Roeckx2016-12-081-2/+10
| | | | | Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #2041
* 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>
* 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>
* Make fuzzer and fuzz tester builds less magicRichard Levitte2016-07-161-32/+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>
* Simplify INCLUDE statements in build.info filesRichard Levitte2016-07-011-10/+10
| | | | | | | 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>
* Re-add x509 and crl fuzzerKurt Roeckx2016-07-011-1/+9
| | | | | | Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #1276
* Run the fuzzing corpora as tests.Ben Laurie2016-07-011-50/+34
| | | | | Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
* Add X509 and CRL fuzzerKurt Roeckx2016-06-251-1/+9
| | | | | | Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #1229
* Add support for fuzzing with AFLKurt Roeckx2016-06-041-24/+33
| | | | | | Reviewed-by: Ben Laurie <ben@links.org> MR: #2740
* Fuzz everything with every input.Ben Laurie2016-06-031-1/+5
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Sort.Ben Laurie2016-06-031-12/+12
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* Add fuzzing!Ben Laurie2016-05-071-0/+29
Reviewed-by: Emilia Käsper <emilia@openssl.org>