siphash-c icon indicating copy to clipboard operation
siphash-c copied to clipboard

A streaming implementation of SipHash in C as well as an optimized one-pass implementation.

Results 7 siphash-c issues
Sort by recently updated
recently updated
newest added

In the sip_hash function declarations, the key and data parameters should be declared const so the functions can be called with const arguments without having first to cast away the...

renamed the shared object using the standard 'lib' prefix added a main Makefile to allow building/installing the library from the top directory bugfix: don't try copying more than available in...

endian.h is specific to glibc, you shouldn't try to include it unless **GLIBC** is defined. I suggest doing hardware check, f.e. like https://code.google.com/p/xxhash/source/browse/trunk/xxhash.c and if it fails, do it in...

Precisely, it does nothing then. The reason is: ``` #if BYTE_ORDER == LITTLE_ENDIAN && UNALIGNED_WORD_ACCESS { uint64_t *data64 = (uint64_t *)data; while (data64 != (uint64_t *) end) { m =...

Hi again, last issue from me. I noticed that you use HAVE_UINT64_T as a test to check if you should use uint64_t. That does not work properly on GCC-64 (debian...

Hi, Just wondering why you haven't merged changes from nobu's fork. No time, or no pull requests, or don't like? cheers, Paul