16 lines
396 B
C
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
|