Files
wizapp-stdlib/tests/hasher/test_hasher.h
T
abdelrahman 900c16415b
Release / release (push) Successful in 4s
Add implementation for siphash
2026-08-31 02:15:01 +01:00

16 lines
396 B
C

// vim:fileencoding=utf-8:foldmethod=marker
#ifndef TEST_HASHER_H
#define TEST_HASHER_H
#include "wapp.h"
// Test Murmur3 hash implementation against the reference implementation
WpTestFuncResult test_murmur3(void);
// Test Sip hash implementation against the reference implementation
WpTestFuncResult test_siphash_128(void);
WpTestFuncResult test_siphash_64(void);
#endif // !TEST_HASHER_H