| 196 | } |
| 197 | |
| 198 | uint64_t |
| 199 | SipHashX(SIPHASH_CTX *ctx, int rc, int rf, |
| 200 | const uint8_t key[static SIPHASH_KEY_LENGTH], const void *src, size_t len) |
| 201 | { |
| 202 | |
| 203 | SipHash_InitX(ctx, rc, rf); |
| 204 | SipHash_SetKey(ctx, key); |
| 205 | SipHash_Update(ctx, src, len); |
| 206 | |
| 207 | return (SipHash_End(ctx)); |
| 208 | } |
| 209 | |
| 210 | #define SIP_ROTL(x, b) (uint64_t)(((x) << (b)) | ( (x) >> (64 - (b)))) |
| 211 |
nothing calls this directly
no test coverage detected