Home
last modified time | relevance | path

Searched refs:cnonce (Results 1 - 6 of 6) sorted by relevance

/third_party/curl/lib/vauth/
H A Ddigest.c354 char cnonce[33]; in Curl_auth_create_digest_md5_message() local
385 result = Curl_rand_hex(data, (unsigned char *)cnonce, sizeof(cnonce)); in Curl_auth_create_digest_md5_message()
413 Curl_MD5_update(ctxt, (const unsigned char *) cnonce, in Curl_auth_create_digest_md5_message()
414 curlx_uztoui(strlen(cnonce))); in Curl_auth_create_digest_md5_message()
461 Curl_MD5_update(ctxt, (const unsigned char *) cnonce, in Curl_auth_create_digest_md5_message()
462 curlx_uztoui(strlen(cnonce))); in Curl_auth_create_digest_md5_message()
476 "cnonce=\"%s\",nc=\"%s\",digest-uri=\"%s\",response=%s," in Curl_auth_create_digest_md5_message()
479 cnonce, nonceCount, spn, resp_hash_hex, qop); in Curl_auth_create_digest_md5_message()
687 char *cnonce in auth_create_digest_http_message() local
[all...]
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
H A Ddigestauth.c95 * @param cnonce A `char *' pointer to the cnonce value
104 const char *cnonce, in digest_calc_ha1()
124 MD5Update (&md5, cnonce, strlen (cnonce)); in digest_calc_ha1()
137 * @param cnonce client nonce
148 const char *cnonce, in digest_calc_response()
186 MD5Update (&md5, cnonce, strlen(cnonce)); in digest_calc_response()
572 char cnonce[MAX_NONCE_LENGT in MHD_digest_auth_check() local
99 digest_calc_ha1(const char *alg, const char *username, const char *realm, const char *password, const char *nonce, const char *cnonce, char *sessionkey) digest_calc_ha1() argument
145 digest_calc_response(const char *ha1, const char *nonce, const char *noncecount, const char *cnonce, const char *qop, const char *method, const char *uri, const char *hentity, char *response) digest_calc_response() argument
[all...]
/third_party/ffmpeg/libavformat/
H A Dhttpauth.c144 char cnonce[17]; in make_digest_auth() local
158 ff_data_to_hex(cnonce, (const uint8_t*) cnonce_buf, sizeof(cnonce_buf), 1); in make_digest_auth()
172 update_md5_strings(md5ctx, A1hash, ":", digest->nonce, ":", cnonce, NULL); in make_digest_auth()
189 update_md5_strings(md5ctx, ":", nc, ":", cnonce, ":", digest->qop, NULL); in make_digest_auth()
208 strlen(digest->opaque) + strlen(digest->qop) + strlen(cnonce) + in make_digest_auth()
231 av_strlcatf(authstr, len, ", cnonce=\"%s\"", cnonce); in make_digest_auth()
H A Drtmpproto.c1654 char cnonce[10]; in do_llnw_auth() local
1659 snprintf(cnonce, sizeof(cnonce), "%08x", av_get_random_seed()); in do_llnw_auth()
1687 av_md5_update(md5, cnonce, strlen(cnonce)); in do_llnw_auth()
1696 "?authmod=%s&user=%s&nonce=%s&cnonce=%s&nc=%s&response=%s", in do_llnw_auth()
1697 "llnw", user, nonce, cnonce, nc, hashstr1); in do_llnw_auth()
/third_party/python/Lib/urllib/
H A Drequest.py1136 # The cnonce-value is an opaque
1187 cnonce = self.get_cnonce(nonce)
1188 noncebit = "%s:%s:%s:%s:%s" % (nonce, ncvalue, cnonce, 'auth', H(A2))
1205 base += ', qop=auth, nc=%s, cnonce="%s"' % (ncvalue, cnonce)
/third_party/curl/lib/
H A Durldata.h359 char *cnonce;

Completed in 15 milliseconds