Home
last modified time | relevance | path

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

/third_party/libsoup/libsoup/
Dsoup-auth-digest.c35 char *cnonce; member
68 g_free (priv->cnonce); in soup_auth_digest_finalize()
175 g_free (priv->cnonce); in soup_auth_digest_update()
176 priv->cnonce = NULL; in soup_auth_digest_update()
253 const char *cnonce, in soup_auth_digest_compute_hex_a1() argument
274 g_checksum_update (checksum, (guchar *)cnonce, strlen (cnonce)); in soup_auth_digest_compute_hex_a1()
286 priv->cnonce, in recompute_hex_a1()
298 g_clear_pointer (&priv->cnonce, g_free); in soup_auth_digest_authenticate()
306 priv->cnonce = g_base64_encode ((guchar *)bgen, strlen (bgen)); in soup_auth_digest_authenticate()
325 return priv->cnonce != NULL; in soup_auth_digest_is_authenticated()
[all …]
Dsoup-auth-domain-digest.c195 const char *nonce, *nc, *cnonce, *response; in check_hex_urp() local
252 cnonce = g_hash_table_lookup (params, "cnonce"); in check_hex_urp()
253 if (!cnonce) in check_hex_urp()
261 nonce, cnonce, hex_a1); in check_hex_urp()
265 nonce, cnonce, nonce_count, in check_hex_urp()
Dsoup-auth-digest.h53 const char *cnonce,
60 const char *cnonce,
/third_party/node/deps/npm/node_modules/request/lib/
Dauth.js81 var ha1Compute = function (algorithm, user, realm, pass, nonce, cnonce) { argument
84 return md5(ha1 + ':' + nonce + ':' + cnonce)
92 var cnonce = qop && uuid().replace(/-/g, '')
93 …1 = ha1Compute(challenge.algorithm, self.user, challenge.realm, self.pass, challenge.nonce, cnonce)
96 ? md5(ha1 + ':' + challenge.nonce + ':' + nc + ':' + cnonce + ':' + qop + ':' + ha2)
106 cnonce: cnonce, property
/third_party/curl/lib/vauth/
Ddigest.c352 char cnonce[33]; in Curl_auth_create_digest_md5_message() local
383 result = Curl_rand_hex(data, (unsigned char *)cnonce, sizeof(cnonce)); in Curl_auth_create_digest_md5_message()
411 Curl_MD5_update(ctxt, (const unsigned char *) cnonce, in Curl_auth_create_digest_md5_message()
412 curlx_uztoui(strlen(cnonce))); in Curl_auth_create_digest_md5_message()
459 Curl_MD5_update(ctxt, (const unsigned char *) cnonce, in Curl_auth_create_digest_md5_message()
460 curlx_uztoui(strlen(cnonce))); in Curl_auth_create_digest_md5_message()
477 cnonce, nonceCount, spn, resp_hash_hex, qop); in Curl_auth_create_digest_md5_message()
678 char *cnonce = NULL; in auth_create_digest_http_message() local
688 if(!digest->cnonce) { in auth_create_digest_http_message()
696 &cnonce, &cnonce_sz); in auth_create_digest_http_message()
[all …]
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/
Ddigestauth.c104 const char *cnonce, in digest_calc_ha1() argument
124 MD5Update (&md5, cnonce, strlen (cnonce)); in digest_calc_ha1()
148 const char *cnonce, in digest_calc_response() argument
186 MD5Update (&md5, cnonce, strlen(cnonce)); in digest_calc_response()
572 char cnonce[MAX_NONCE_LENGTH]; in MHD_digest_auth_check() local
721 if ( (0 == lookup_sub_value (cnonce, in MHD_digest_auth_check()
722 sizeof (cnonce), in MHD_digest_auth_check()
766 cnonce, in MHD_digest_auth_check()
771 cnonce, in MHD_digest_auth_check()
/third_party/ffmpeg/libavformat/
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()
159 cnonce[2*sizeof(cnonce_buf)] = 0; in make_digest_auth()
174 update_md5_strings(md5ctx, A1hash, ":", digest->nonce, ":", cnonce, NULL); in make_digest_auth()
193 update_md5_strings(md5ctx, ":", nc, ":", cnonce, ":", digest->qop, NULL); in make_digest_auth()
213 strlen(digest->opaque) + strlen(digest->qop) + strlen(cnonce) + in make_digest_auth()
236 av_strlcatf(authstr, len, ", cnonce=\"%s\"", cnonce); in make_digest_auth()
Drtmpproto.c1650 char cnonce[10]; in do_llnw_auth() local
1655 snprintf(cnonce, sizeof(cnonce), "%08x", av_get_random_seed()); in do_llnw_auth()
1685 av_md5_update(md5, cnonce, strlen(cnonce)); in do_llnw_auth()
1695 "llnw", user, nonce, cnonce, nc, hashstr1); in do_llnw_auth()
/third_party/curl/tests/data/
Dtest128684 # - Remove the unique value from cnonce if in RFC format
89 if(s/^(Authorization: Digest )([^\r\n]+)(\r?\n)$//) { $_ = $1 . join(', ', map { s/^(cnonce=)"[a-zA…
99 Authorization: Digest cnonce=REMOVED, nc=00000001, nonce="1053604144", qop=auth, realm="testrealm",…
105 Authorization: Digest cnonce=REMOVED, nc=00000002, nonce="1053604144", qop=auth, realm="testrealm",…
Dtest15391 ^Authorization.*cnonce
118 …e="testuser", realm="testrealm", nonce="999999", uri="/%TESTNUMBER0002", cnonce="MTA4MzIy", nc="00…
/third_party/python/Lib/urllib/
Drequest.py1187 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/
Durldata.h328 char *cnonce;
/third_party/node/deps/npm/node_modules/request/
DCHANGELOG.md569 - [#630](https://github.com/request/request/pull/630) Send random cnonce for HTTP Digest requests (…