diff options
author | Tom Gundersen <teg@jklm.no> | 2015-10-04 00:23:25 +0200 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2015-10-05 17:33:58 +0200 |
commit | 7c57f504c935a34362d36f514a409f4cbd23a349 (patch) | |
tree | acfd8942795767ee0b55424a9cf71064d560e4ad /src/basic/siphash24.h | |
parent | 2c4cc3bdcd18d554cb2ad076516609c69fdd79aa (diff) |
siphash24: expose the internal helper functions
Diffstat (limited to 'src/basic/siphash24.h')
-rw-r--r-- | src/basic/siphash24.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/basic/siphash24.h b/src/basic/siphash24.h index 62e1168a79..c107bdd213 100644 --- a/src/basic/siphash24.h +++ b/src/basic/siphash24.h @@ -3,4 +3,17 @@ #include <inttypes.h> #include <sys/types.h> +struct siphash { + uint64_t v0; + uint64_t v1; + uint64_t v2; + uint64_t v3; + uint64_t padding; + size_t inlen; +}; + +void siphash_init(struct siphash *state, const uint8_t k[16]); +void siphash24_compress(const void *in, size_t inlen, struct siphash *state); +uint64_t siphash24_finalize(struct siphash *state); + void siphash24(uint8_t out[8], const void *in, size_t inlen, const uint8_t k[16]); |