asn1parse.c 776 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the OpenSSL licenses, (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. * https://www.openssl.org/source/license.html
  8. * or in the file LICENSE in the source distribution.
  9. */
  10. /*
  11. * Fuzz the parser used for dumping ASN.1 using "openssl asn1parse".
  12. */
  13. #include <stdio.h>
  14. #include <openssl/asn1.h>
  15. #include <openssl/x509.h>
  16. #include <openssl/x509v3.h>
  17. #include "fuzzer.h"
  18. int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
  19. static BIO *bio_out;
  20. if (bio_out == NULL)
  21. bio_out = BIO_new_file("/dev/null", "w");
  22. (void)ASN1_parse_dump(bio_out, buf, len, 0, 0);
  23. return 0;
  24. }