Adam Langley | b70cd92 | 2016-04-25 10:48:19 -0700 | [diff] [blame] | 1 | /* 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 Benjamin | 4c0e6c6 | 2016-10-13 19:03:17 -0400 | [diff] [blame] | 15 | #include <openssl/err.h> |
David Benjamin | 66ec5c9 | 2016-03-30 14:26:46 -0400 | [diff] [blame] | 16 | #include <openssl/mem.h> |
Adam Langley | 9a4beb8 | 2015-11-09 13:57:26 -0800 | [diff] [blame] | 17 | #include <openssl/x509.h> |
| 18 | |
David Benjamin | 0939f80 | 2016-10-12 10:35:18 -0400 | [diff] [blame] | 19 | extern "C" int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) { |
| 20 | X509 *x509 = d2i_X509(NULL, &buf, len); |
David Benjamin | f48fcaf | 2016-02-17 18:59:41 -0500 | [diff] [blame] | 21 | if (x509 != NULL) { |
David Benjamin | e2daba6 | 2017-08-17 20:12:08 -0400 | [diff] [blame] | 22 | // Extract the public key. |
David Benjamin | f48fcaf | 2016-02-17 18:59:41 -0500 | [diff] [blame] | 23 | EVP_PKEY_free(X509_get_pubkey(x509)); |
David Benjamin | 66ec5c9 | 2016-03-30 14:26:46 -0400 | [diff] [blame] | 24 | |
David Benjamin | e2daba6 | 2017-08-17 20:12:08 -0400 | [diff] [blame] | 25 | // Reserialize the structure. |
David Benjamin | 66ec5c9 | 2016-03-30 14:26:46 -0400 | [diff] [blame] | 26 | uint8_t *der = NULL; |
| 27 | i2d_X509(x509, &der); |
| 28 | OPENSSL_free(der); |
David Benjamin | 6038ac5 | 2021-08-25 11:13:17 -0400 | [diff] [blame] | 29 | |
| 30 | BIO *bio = BIO_new(BIO_s_mem()); |
| 31 | X509_print(bio, x509); |
| 32 | BIO_free(bio); |
David Benjamin | f48fcaf | 2016-02-17 18:59:41 -0500 | [diff] [blame] | 33 | } |
| 34 | X509_free(x509); |
David Benjamin | 4c0e6c6 | 2016-10-13 19:03:17 -0400 | [diff] [blame] | 35 | ERR_clear_error(); |
Adam Langley | 9a4beb8 | 2015-11-09 13:57:26 -0800 | [diff] [blame] | 36 | return 0; |
| 37 | } |