mirror of
https://github.com/hashcat/hashcat.git
synced 2025-07-07 07:12:36 +00:00
12 lines
261 B
C
12 lines
261 B
C
#include <stdint.h>
|
|
#include "xxhash.h"
|
|
|
|
|
|
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|
volatile XXH64_hash_t hash64 = XXH64(data, size, 0);
|
|
(void)hash64;
|
|
volatile XXH32_hash_t hash32 = XXH32(data, size, 0);
|
|
(void)hash32;
|
|
return 0;
|
|
}
|