Test that X509_issuer_and_serial_hash doesn't crash

Provide a certificate with a bad issuer and check that
X509_issuer_and_serial_hash doesn't crash.

Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
This commit is contained in:
Matt Caswell 2021-02-10 16:36:57 +00:00
parent 8130d654d1
commit 55869f594f
2 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,8 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len)
X509_print(bio, x509);
BIO_free(bio);
X509_issuer_and_serial_hash(x509);
i2d_X509(x509, &der);
OPENSSL_free(der);