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: fc8f0f8c ("siphash: Use incremental rather than all-at-once"...) Signed-off-by: David Gibson <david(a)gibson.dropbear.id.au> --- siphash.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/siphash.h b/siphash.h index f966cdb0..a2ca2a99 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 */ -- 2.45.2
On Wed, 19 Jun 2024 12:59:06 +1000 David Gibson <david(a)gibson.dropbear.id.au> wrote: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: fc8f0f8c ("siphash: Use incremental rather than all-at-once"...) Signed-off-by: David Gibson <david(a)gibson.dropbear.id.au>Applied. -- Stefano