I have been told to use the a Siphash key
24 64 6d 71 33 45 30 31 63 2f 6d 69 37 33 9d 19
Which I am trying to use the SipHash24_Init from OpenBSD on.
I have the following global:
const SIPHASH_KEY COMP_SIPHASH_KEY = 0x24646d7133453031632f6d6937339d19;
And is used like this:
SIPHASH_CTX ctx;
SipHash24_Init(&ctx, &COMP_SIPHASH_KEY);
I would post more but its complicated and I don't think it's relevant
However i get the following compiler error on the definition/declaration:
error: integer constant is too large for its type
error: invalid initializer