You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
extern "C" {
|
|
|
|
#include "sshkey.h"
|
|
|
|
int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size)
|
|
{
|
|
struct sshkey *k = NULL;
|
|
int r = sshkey_from_blob(data, size, &k);
|
|
if (r == 0) sshkey_free(k);
|
|
return 0;
|
|
}
|
|
|
|
} // extern
|
|
|