Sign in
pigweed
/
third_party
/
boringssl
/
boringssl
/
ce9d85eedd4888848148e3b855e85efb1009224c
/
.
/
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
;
}