aboutgitcodebugslistschat
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2024-06-19 12:59:06 +1000
committerStefano Brivio <sbrivio@redhat.com>2024-06-19 14:55:42 +0200
commit020ff7a40eb5daa5bbaa0afd6b9319cbfb143b01 (patch)
tree72c08e10765e7166bd2fe2720fa669d8a39efca9
parent7e87bd98ac0cf58d9cf2328b933dbbb74f300c15 (diff)
downloadpasst-020ff7a40eb5daa5bbaa0afd6b9319cbfb143b01.tar
passt-020ff7a40eb5daa5bbaa0afd6b9319cbfb143b01.tar.gz
passt-020ff7a40eb5daa5bbaa0afd6b9319cbfb143b01.tar.bz2
passt-020ff7a40eb5daa5bbaa0afd6b9319cbfb143b01.tar.lz
passt-020ff7a40eb5daa5bbaa0afd6b9319cbfb143b01.tar.xz
passt-020ff7a40eb5daa5bbaa0afd6b9319cbfb143b01.tar.zst
passt-020ff7a40eb5daa5bbaa0afd6b9319cbfb143b01.zip
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 <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rw-r--r--siphash.h6
1 files changed, 0 insertions, 6 deletions
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 */