Move libfuzzer sanitizer options to README
[openssl.git] / fuzz / x509.c
index a0fab2f60056077370c9397747d8c1ba1f1b4e70..78fef6c3ff00434626d6aa2dc2ab653e365e5c86 100644 (file)
 #include <openssl/bio.h>
 #include "fuzzer.h"
 
-int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
+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;
 
     X509 *x509 = d2i_X509(NULL, &p, len);
     if (x509 != NULL) {
         BIO *bio = BIO_new(BIO_s_null());
+        /* This will load and print the public key as well as extensions */
         X509_print(bio, x509);
         BIO_free(bio);
 
@@ -29,3 +36,7 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
     }
     return 0;
 }
+
+void FuzzerCleanup(void)
+{
+}