#include #include #include #include "siphash.h" static const uint8_t key[16] = { 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 }; static const uint8_t string[15] = { 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14 }; int main(int argc, char **argv) { (void)argc; (void)argv; (void)printf("%016"PRIx64"\n", siphash_2_4(key, string, 15)); return 0; }