Searched refs:SIPHASH_CTX (Results 1 – 3 of 3) sorted by relevance
/linux-6.12.1/fs/bcachefs/ |
D | siphash.h | 62 } SIPHASH_CTX; typedef 69 void SipHash_Init(SIPHASH_CTX *, const SIPHASH_KEY *); 70 void SipHash_Update(SIPHASH_CTX *, int, int, const void *, size_t); 71 u64 SipHash_End(SIPHASH_CTX *, int, int); 72 void SipHash_Final(void *, SIPHASH_CTX *, int, int);
|
D | siphash.c | 54 static void SipHash_Rounds(SIPHASH_CTX *ctx, int rounds) in SipHash_Rounds() 77 static void SipHash_CRounds(SIPHASH_CTX *ctx, const void *ptr, int rounds) in SipHash_CRounds() 86 void SipHash_Init(SIPHASH_CTX *ctx, const SIPHASH_KEY *key) in SipHash_Init() 102 void SipHash_Update(SIPHASH_CTX *ctx, int rc, int rf, in SipHash_Update() 138 void SipHash_Final(void *dst, SIPHASH_CTX *ctx, int rc, int rf) in SipHash_Final() 147 u64 SipHash_End(SIPHASH_CTX *ctx, int rc, int rf) in SipHash_End() 168 SIPHASH_CTX ctx; in SipHash()
|
D | str_hash.h | 71 SIPHASH_CTX siphash;
|