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