MCPcopy Create free account
hub / github.com/apache/httpd / ap_siphash24_auth

Function ap_siphash24_auth

modules/session/mod_session_crypto.c:157–164  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

155}
156
157static 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

Callers 1

compute_authFunction · 0.85

Calls 1

ap_siphash24Function · 0.85

Tested by

no test coverage detected