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

Function ap_bin2hex

server/util.c:2314–2324  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2312}
2313
2314AP_DECLARE(void) ap_bin2hex(const void *src, apr_size_t srclen, char *dest)
2315{
2316 const unsigned char *in = src;
2317 apr_size_t i;
2318
2319 for (i = 0; i < srclen; i++) {
2320 *dest++ = c2x_table[in[i] >> 4];
2321 *dest++ = c2x_table[in[i] & 0xf];
2322 }
2323 *dest = '\0';
2324}
2325
2326AP_DECLARE(int) ap_is_directory(apr_pool_t *p, const char *path)
2327{

Callers 11

socache_rd_id2keyFunction · 0.85
socache_mc_id2keyFunction · 0.85
gen_nonce_hashFunction · 0.85
make_server_idFunction · 0.85
modssl_SSL_SESSION_id2szFunction · 0.85
create_sni_policy_hashFunction · 0.85
log_xlate_errorFunction · 0.85
lua_apr_sha1Function · 0.85
log_escapeFunction · 0.85
sha1_funcFunction · 0.85
ap_md5_binaryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected