Searched defs:NONCE_LEN (Results 1 - 1 of 1) sorted by relevance

/httpd/modules/aaa/
H A Dmod_auth_digest.c107 #define NONCE_LEN (int )(NONCE_TIME_LEN + NONCE_HASH_LEN) macro
119 char last_nonce[NONCE_LEN+1]; /* for one-time nonce's */
1064 char *nonce = apr_palloc(p, NONCE_LEN+1);
1193 memcpy(resp->client->last_nonce, nonce, NONCE_LEN+1);
1382 if (strlen(resp->nonce) != NONCE_LEN) {
1385 resp->nonce, NONCE_LEN);
1426 if (memcmp(resp->client->last_nonce, resp->nonce, NONCE_LEN)) {
1848 memcpy(resp->client->last_nonce, nonce, NONCE_LEN+1);

Completed in 453 milliseconds