aboutsummaryrefslogtreecommitdiff
path: root/tests/fuzz/fuzz.c
blob: 604518600304ac6fbee9287a46d30f9af66d7a82 (plain)
1
2
3
4
5
6
7
#include "sha3.h"

int LLVMFuzzerTestOneInput(const uint8_t *src, size_t len) {
  uint8_t dst[128];
  shake128_xof_once(src, len, dst, sizeof(dst));
  return 0;
}