mirror of https://github.com/google/oss-fuzz.git
22 lines
493 B
C++
22 lines
493 B
C++
|
#include <assert.h>
|
||
|
#include <sodium.h>
|
||
|
|
||
|
#include "fake_random.h"
|
||
|
|
||
|
extern "C" int LLVMFuzzerTestOneInput(const unsigned char *data, size_t size) {
|
||
|
int initialized = sodium_init();
|
||
|
assert(initialized >= 0);
|
||
|
|
||
|
setup_fake_random(data, size);
|
||
|
|
||
|
unsigned char key[crypto_auth_KEYBYTES];
|
||
|
unsigned char mac[crypto_auth_BYTES];
|
||
|
|
||
|
// this uses a deterministic generator
|
||
|
crypto_auth_keygen(key);
|
||
|
|
||
|
crypto_auth(mac, data, size, key);
|
||
|
crypto_auth_verify(mac, data, size, key);
|
||
|
return 0;
|
||
|
}
|