Home | History | Annotate | Download | only in lib

Lines Matching full:nonce

501  * nonce   [in/out] - The buffer where the nonce will be stored.
502 * nlen [in] - The length of the nonce buffer.
513 char *nonce, size_t nlen,
534 /* Retrieve nonce string from the challenge */
535 if(!sasl_digest_get_key_value((char *)chlg, "nonce=\"", nonce, nlen, '\"')) {
597 char nonce[64];
610 result = sasl_decode_digest_md5_message(chlg64, nonce, sizeof(nonce),
661 Curl_MD5_update(ctxt, (const unsigned char *) nonce,
662 curlx_uztoui(strlen(nonce)));
705 Curl_MD5_update(ctxt, (const unsigned char *) nonce,
706 curlx_uztoui(strlen(nonce)));
726 response = aprintf("username=\"%s\",realm=\"%s\",nonce=\"%s\","
729 userp, realm, nonce,
759 bool before = FALSE; /* got a nonce before */
765 /* If we already have received a nonce, keep that in mind */
766 if(digest->nonce)
782 if(Curl_raw_equal(value, "nonce")) {
783 digest->nonce = strdup(content);
784 if(!digest->nonce)
790 digest->nc = 1; /* we make a new nonce now */
864 /* We had a nonce since before, and we got another one now without
870 /* We got this header without a nonce, that's a bad Digest line! */
871 if(!digest->nonce)
942 ":" unq(nonce-value) ":" unq(cnonce-value)
956 /* nonce and cnonce are OUTSIDE the hash */
957 tmp = aprintf("%s:%s:%s", ha1, digest->nonce, digest->cnonce);
1002 digest->nonce,
1011 digest->nonce,
1026 nonce="1053604145", uri="/64", response="c55f7f30d83d774a3d2dcacf725abaca"
1030 the other fields, this shouldn't be an issue. realm, nonce, and opaque
1043 "nonce=\"%s\", "
1051 digest->nonce,
1061 using the same nonce in the qop=auth mode */
1066 "nonce=\"%s\", "
1071 digest->nonce,
1119 Curl_safefree(digest->nonce);