| 155 | } |
| 156 | |
| 157 | static void ap_siphash24_auth(unsigned char out[AP_SIPHASH_DSIZE], |
| 158 | const void *src, apr_size_t len, |
| 159 | const unsigned char key[AP_SIPHASH_KSIZE]) |
| 160 | { |
| 161 | apr_uint64_t h; |
| 162 | h = ap_siphash24(src, len, key); |
| 163 | U64TO8_LE(out, h); |
| 164 | } |
| 165 | |
| 166 | #endif |
| 167 |
no test coverage detected