Lines Matching defs:siphash
2 * siphash.h - SipHash-2-4 in a single header file
9 * 1. https://www.131002.net/siphash/siphash24.c
10 * 2. https://www.131002.net/siphash/
55 * representing the key, and a struct siphash for representing the hash
70 * struct siphash state;
132 struct siphash {
137 }; /* struct siphash */
167 sip_round(struct siphash *H, const int rounds) {
191 static struct siphash *
192 sip24_init(struct siphash *H, const struct sipkey *key) {
206 static struct siphash *
207 sip24_update(struct siphash *H, const void *src, size_t len) {
231 sip24_final(struct siphash *H) {
272 struct siphash state = SIPHASH_INITIALIZER;