Lines Matching refs:siphash_key
40 * the siphash_key (k0) is used as the key.
42 SIPHASH_KEY siphash_key;
52 .siphash_key = { .k0 = bi->bi_hash_seed }
60 memcpy(&info.siphash_key, digest, sizeof(info.siphash_key));
79 ctx->crc32c = crc32c(~0, &info->siphash_key.k0,
80 sizeof(info->siphash_key.k0));
83 ctx->crc64 = crc64_be(~0, &info->siphash_key.k0,
84 sizeof(info->siphash_key.k0));
88 SipHash24_Init(&ctx->siphash, &info->siphash_key);