MCPcopy Create free account
hub / github.com/F-Stack/f-stack / SipHash_Final

Function SipHash_Final

freebsd/crypto/siphash/siphash.c:169–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167}
168
169void
170SipHash_Final(uint8_t dst[static SIPHASH_DIGEST_LENGTH], SIPHASH_CTX *ctx)
171{
172 uint64_t r;
173
174 KASSERT(ctx->initialized == 2,
175 ("%s: context %p not properly initialized", __func__, ctx));
176
177 r = SipHash_End(ctx);
178 le64enc(dst, r);
179}
180
181uint64_t
182SipHash_End(SIPHASH_CTX *ctx)

Callers 5

SipHash24_TestVectorsFunction · 0.85
syncookie_macFunction · 0.85
tcp_keyed_hashFunction · 0.85
tcp_fastopen_make_cookieFunction · 0.85

Calls 2

SipHash_EndFunction · 0.85
le64encFunction · 0.85

Tested by 1

SipHash24_TestVectorsFunction · 0.68