fasthash-sys-fork 0.4.2

A suite of non-cryptographic hash functions for Rust.
Documentation
#ifndef SIPHASH_H
#define SIPHASH_H

#include <stdint.h>
#include <stdlib.h>

#ifdef __cplusplus
extern "C" {
#endif
 
uint64_t siphash(const unsigned char key[16], const unsigned char *m, size_t len);
uint64_t siphash13(const unsigned char key[16], const unsigned char *m, size_t len);
uint32_t halfsiphash(const unsigned char key[16], const unsigned char *m, size_t len);
 
#ifdef __cplusplus
}
#endif

#endif // SIPHASH_H