Re-add x509 and crl fuzzer
[openssl.git] / fuzz / x509.c
index a0fab2f60056077370c9397747d8c1ba1f1b4e70..b2851f1e11480743fb530d7f9ab67e2b822165b7 100644 (file)
 #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;
@@ -19,6 +23,7 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
     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);