Home
last modified time | relevance | path

Searched refs:nonce_time (Results 1 – 1 of 1) sorted by relevance

/external/libmicrohttpd/src/microhttpd/
Ddigestauth.c397 calculate_nonce (uint32_t nonce_time, in calculate_nonce() argument
411 timestamp[0] = (nonce_time & 0xff000000) >> 0x18; in calculate_nonce()
412 timestamp[1] = (nonce_time & 0x00ff0000) >> 0x10; in calculate_nonce()
413 timestamp[2] = (nonce_time & 0x0000ff00) >> 0x08; in calculate_nonce()
414 timestamp[3] = (nonce_time & 0x000000ff); in calculate_nonce()
580 uint32_t nonce_time; in MHD_digest_auth_check() local
656 nonce_time = strtoul (nonce + len - 8, (char **)NULL, 16); in MHD_digest_auth_check()
663 if ( (t > nonce_time + nonce_timeout) || in MHD_digest_auth_check()
664 (nonce_time + nonce_timeout < nonce_time) ) in MHD_digest_auth_check()
699 calculate_nonce (nonce_time, in MHD_digest_auth_check()