From 020ff7a40eb5daa5bbaa0afd6b9319cbfb143b01 Mon Sep 17 00:00:00 2001 From: David Gibson Date: Wed, 19 Jun 2024 12:59:06 +1000 Subject: siphash: Remove stale prototypes In fc8f0f8c ("siphash: Use incremental rather than all-at-once siphash functions") we removed the older interface to the SipHash implementation, which took fixed sized blocks of data. However, we forgot to remove the prototypes for those functions, so do that now. Fixes: fc8f0f8c48ef ("siphash: Use incremental rather than all-at-once siphash functions") Signed-off-by: David Gibson Signed-off-by: Stefano Brivio --- siphash.h | 6 ------ 1 file changed, 6 deletions(-) (limited to 'siphash.h') diff --git a/siphash.h b/siphash.h index f966cdb..a2ca2a9 100644 --- a/siphash.h +++ b/siphash.h @@ -115,10 +115,4 @@ static inline uint64_t siphash_final(struct siphash_state *state, return state->v[0] ^ state->v[1] ^ state->v[2] ^ state->v[3]; } -uint64_t siphash_8b(const uint8_t *in, const uint64_t *k); -uint64_t siphash_12b(const uint8_t *in, const uint64_t *k); -uint64_t siphash_20b(const uint8_t *in, const uint64_t *k); -uint64_t siphash_32b(const uint8_t *in, const uint64_t *k); -uint64_t siphash_36b(const uint8_t *in, const uint64_t *k); - #endif /* SIPHASH_H */ -- cgit v1.2.3