blob: 79e14561442b6db83227b3054660d0868cdb796b [file] [log] [blame]
Adam Langleyb70cd922016-04-25 10:48:19 -07001/* Copyright (c) 2016, Google Inc.
2 *
3 * Permission to use, copy, modify, and/or distribute this software for any
4 * purpose with or without fee is hereby granted, provided that the above
5 * copyright notice and this permission notice appear in all copies.
6 *
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
10 * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
12 * OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
13 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */
14
David Benjamin4c0e6c62016-10-13 19:03:17 -040015#include <openssl/err.h>
David Benjamin66ec5c92016-03-30 14:26:46 -040016#include <openssl/mem.h>
Adam Langley9a4beb82015-11-09 13:57:26 -080017#include <openssl/x509.h>
18
David Benjamin0939f802016-10-12 10:35:18 -040019extern "C" int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
20 X509 *x509 = d2i_X509(NULL, &buf, len);
David Benjaminf48fcaf2016-02-17 18:59:41 -050021 if (x509 != NULL) {
David Benjamine2daba62017-08-17 20:12:08 -040022 // Extract the public key.
David Benjaminf48fcaf2016-02-17 18:59:41 -050023 EVP_PKEY_free(X509_get_pubkey(x509));
David Benjamin66ec5c92016-03-30 14:26:46 -040024
David Benjamine2daba62017-08-17 20:12:08 -040025 // Reserialize the structure.
David Benjamin66ec5c92016-03-30 14:26:46 -040026 uint8_t *der = NULL;
27 i2d_X509(x509, &der);
28 OPENSSL_free(der);
David Benjamin6038ac52021-08-25 11:13:17 -040029
30 BIO *bio = BIO_new(BIO_s_mem());
31 X509_print(bio, x509);
32 BIO_free(bio);
David Benjaminf48fcaf2016-02-17 18:59:41 -050033 }
34 X509_free(x509);
David Benjamin4c0e6c62016-10-13 19:03:17 -040035 ERR_clear_error();
Adam Langley9a4beb82015-11-09 13:57:26 -080036 return 0;
37}