summaryrefslogtreecommitdiffstats
path: root/fuzz/crl.c
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2016-07-01 16:42:15 +0200
committerKurt Roeckx <kurt@roeckx.be>2016-07-01 17:02:33 +0200
commita05b0bcf878c8c52824e8ee4bb6c1853fa23800b (patch)
tree60be90a13dbab29bef7576e7e8574b8f7602a7c4 /fuzz/crl.c
parentdd850bcb395753a130a5d69697092d69555b6e2c (diff)
Re-add x509 and crl fuzzer
Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #1276
Diffstat (limited to 'fuzz/crl.c')
-rw-r--r--fuzz/crl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fuzz/crl.c b/fuzz/crl.c
index 4dd5b3b155..728943f551 100644
--- a/fuzz/crl.c
+++ b/fuzz/crl.c
@@ -12,6 +12,10 @@
#include <openssl/bio.h>
#include "fuzzer.h"
+int FuzzerInitialize(int *argc, char ***argv) {
+ return 1;
+}
+
int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
const unsigned char *p = buf;
unsigned char *der = NULL;