Sign in
boringssl
/
boringssl
/
f3376ace43b87757862fb3a20ca42d7bf4685529
/
.
/
fuzz
/
cert.cc
blob: ad40a3190c47625246a101253cd41839955bc023 [
file
] [
log
] [
blame
]
#include
<openssl/x509.h>
extern
"C"
int
LLVMFuzzerTestOneInput
(
uint8_t
*
buf
,
size_t
len
)
{
const
uint8_t
*
bufp
=
buf
;
X509_free
(
d2i_X509
(
NULL
,
&
bufp
,
len
));
return
0
;
}