csiphash icon indicating copy to clipboard operation
csiphash copied to clipboard

SipHash in C

Results 2 csiphash issues
Sort by recently updated
recently updated
newest added

siphash24 casts a void pointer to an uint64_t pointer, which has more strict alignment requirements on some targets, leading to a bus error. that's not valid code. seen in the...

Instead of checking OS platforms, it directly asks cpp for the endianness. That way the code should be more portable. Worked not only for OS X, FreeBSD and Linux but...