From cdc5ae9c6597f5d7c5507645e6bc561858b91e3e Mon Sep 17 00:00:00 2001 From: FdaSilvaYY Date: Wed, 30 Jan 2019 21:16:38 +0100 Subject: [PATCH] Fuzz: add a few more types into Fuzzing for ESS Reviewed-by: Matt Caswell Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/8117) --- fuzz/asn1.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/fuzz/asn1.c b/fuzz/asn1.c index 83a1e7ae6c..54cd0fcf82 100644 --- a/fuzz/asn1.c +++ b/fuzz/asn1.c @@ -1,5 +1,5 @@ /* - * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved. + * Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. * * Licensed under the Apache License 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -27,11 +27,13 @@ #include #include #include +#include #include #include #include #include #include +#include #include "fuzzer.h" #include "rand.inc" @@ -317,10 +319,12 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len) DO_TEST(TS_STATUS_INFO, d2i_TS_STATUS_INFO, i2d_TS_STATUS_INFO, TS_STATUS_INFO_print_bio); DO_TEST(TS_TST_INFO, d2i_TS_TST_INFO, i2d_TS_TST_INFO, TS_TST_INFO_print_bio); DO_TEST_NO_PRINT(TS_ACCURACY, d2i_TS_ACCURACY, i2d_TS_ACCURACY); +#endif DO_TEST_NO_PRINT(ESS_ISSUER_SERIAL, d2i_ESS_ISSUER_SERIAL, i2d_ESS_ISSUER_SERIAL); DO_TEST_NO_PRINT(ESS_CERT_ID, d2i_ESS_CERT_ID, i2d_ESS_CERT_ID); DO_TEST_NO_PRINT(ESS_SIGNING_CERT, d2i_ESS_SIGNING_CERT, i2d_ESS_SIGNING_CERT); -#endif + DO_TEST_NO_PRINT(ESS_CERT_ID_V2, d2i_ESS_CERT_ID_V2, i2d_ESS_CERT_ID_V2); + DO_TEST_NO_PRINT(ESS_SIGNING_CERT_V2, d2i_ESS_SIGNING_CERT_V2, i2d_ESS_SIGNING_CERT_V2); #ifndef OPENSSL_NO_DH DO_TEST(DH, d2i_DHparams, i2d_DHparams, DHparams_print); DO_TEST(DH, d2i_DHxparams, i2d_DHxparams, DHparams_print); -- 2.25.1