summaryrefslogtreecommitdiff
path: root/src/hash.h
blob: 874669acdf501faf31e8977aa7f8f4454ccfae91 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
enum {
	HASH_OUTPUT_LENGTH = 16U,
};

void
hash(
	const size_t inlen,
	const void *const restrict in,
	u8 out[HASH_OUTPUT_LENGTH]
);