aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/crypto/siphash24.h
blob: f06a87cf5b748fdfb5b67b0d3579d017b8e3d065 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* Copyright 2015-2016 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. */

#ifndef SIPHASH24_H
#define SIPHASH24_H

enum siphash24_lengths {
	SIPHASH24_KEY_LEN = 16
};

uint64_t siphash24(const uint8_t *data, size_t len, const uint8_t key[SIPHASH24_KEY_LEN]);

#ifdef DEBUG
bool siphash24_selftest(void);
#endif

#endif