siphash: Remove stale prototypes
Infc8f0f8c
("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:fc8f0f8c48
("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>
This commit is contained in:
parent
7e87bd98ac
commit
020ff7a40e
1 changed files with 0 additions and 6 deletions
|
@ -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];
|
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 */
|
#endif /* SIPHASH_H */
|
||||||
|
|
Loading…
Reference in a new issue