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

/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dhttp_digest.c312 char *cnonce = NULL; local
369 if(!d->cnonce) {
374 &cnonce, &cnonce_sz);
377 d->cnonce = cnonce;
388 ":" unq(nonce-value) ":" unq(cnonce-value)
402 /* nonce and cnonce are OUTSIDE the hash */
403 tmp = aprintf("%s:%s:%s", ha1, d->nonce, d->cnonce);
467 d->cnonce,
493 are copied as is from the server, escapes and all. cnonce i
[all...]
H A Dcurl_sasl.c419 char cnonce[33]; local
454 snprintf(cnonce, sizeof(cnonce), "%08x%08x%08x%08x",
481 Curl_MD5_update(ctxt, (const unsigned char *) cnonce,
482 curlx_uztoui(strlen(cnonce)));
521 Curl_MD5_update(ctxt, (const unsigned char *) cnonce,
522 curlx_uztoui(strlen(cnonce)));
536 "cnonce=\"%s\",nc=\"%s\",digest-uri=\"%s\",response=%s,"
539 cnonce, nonceCount, uri, resp_hash_hex, qop);
H A Durldata.h402 char *cnonce; member in struct:digestdata
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/sasl/
H A Dsasl.tcl466 set cnonce [CreateNonce]
488 $qop $nonce $noncecount $cnonce]
490 set ctx(response) "username=\"$username\",realm=\"$realm\",nonce=\"$nonce\",nc=\"$noncecount\",cnonce=\"$cnonce\",digest-uri=\"$uri\",response=\"$R\",qop=$qop"
529 $uri auth $ctx(nonce) $nc $params(cnonce)]
532 $uri auth $ctx(nonce) $nc $params(cnonce)]
566 proc ::SASL::DigestResponse {user realm pass uri qop nonce noncecount cnonce} {
572 set A1h [md5_hex "${A1}:$nonce:$cnonce"]
574 set R [md5_hex $A1h:$nonce:$noncecount:$cnonce:$qop:$A2h]
580 proc ::SASL::DigestResponse2 {user realm pass uri qop nonce noncecount cnonce} {
[all...]
/macosx-10.10.1/passwordserver_sasl-193/cyrus_sasl/plugins/
H A Ddigestmd5.c186 unsigned char *cnonce; member in struct:reauth_entry
233 unsigned char *cnonce; member in struct:context
1624 if (text->cnonce) utils->free(text->cnonce);
1653 if (reauth->cnonce) utils->free(reauth->cnonce);
1748 unsigned char *cnonce,
1768 cnonce,
1790 cnonce, /* client nonce */
1811 cnonce, /* clien
1744 create_response(context_t * text, const sasl_utils_t * utils, unsigned char *nonce, unsigned int ncvalue, unsigned char *cnonce, char *qop, const sasl_http_request_t *request, HASH Secret, char *authorization_id, char **response_value) argument
2176 unsigned char *nonce = NULL, *cnonce = NULL; local
3267 calculate_response(context_t * text, const sasl_utils_t * utils, char *algorithm, unsigned char *username, unsigned char *realm, unsigned char *nonce, unsigned int ncvalue, unsigned char *cnonce, char *qop, const sasl_http_request_t *request, sasl_secret_t * passwd, unsigned char *authorization_id, char **response_value) argument
[all...]
H A Dntlm.c2012 /* put the cnonce in place after the LMv2 HMAC */
2013 char *cnonce = (char *)(resp + CC_MD5_DIGEST_LENGTH); local
2018 params->utils->rand(params->utils->rpool, cnonce, NTLM_NONCE_LENGTH);
2021 (const u_char *)serverin + NTLM_TYPE2_CHALLENGE_OFFSET, (const unsigned char *)cnonce, NTLM_NONCE_LENGTH,
/macosx-10.10.1/Heimdal-398.1.2/tests/kdc/
H A Dcheck-digest.in243 cnonce="21402324255E262A28295F2B3A337C7E"
251 --client-nonce="$cnonce" \
265 --client-nonce="$cnonce" \
/macosx-10.10.1/apache-793/httpd/modules/aaa/
H A Dmod_auth_digest.c151 const char *cnonce; member in struct:digest_header_struct
972 else if (!strcasecmp(key, "cnonce"))
973 resp->cnonce = apr_pstrdup(r->pool, value);
984 || (resp->message_qop && (!resp->cnonce || !resp->nonce_count))) {
1144 * resp->cnonce, NULL));
1148 * MD5(MD5(username ":" realm ":" password) ":" nonce ":" cnonce)
1154 * the username, realm, nonce, and cnonce) and receiving the hash from it.
1166 ":", resp->cnonce, NULL));
1294 * from the client comes in with the cnonce.
1589 resp->cnonce, "
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/ntlm/
H A Ddigest.c658 context->clientNonce = values_find(&val, "cnonce");
745 char *a1, *str, *cnonce = NULL, *opaque = NULL, *uri = NULL, *nc = NULL; local
818 asprintf(&cnonce, ",cnonce=\"%s\"", context->clientNonce);
829 cnonce ? cnonce : "",
838 FREE_AND_CLEAR(cnonce);
/macosx-10.10.1/ruby-106/ruby/lib/net/
H A Dimap.rb3470 :cnonce => Digest::MD5.hexdigest("%.15f:%.15f:%d" % [Time.now.to_f, rand, Process.pid.to_s]),
3483 a1 = [ a0, response.values_at(:nonce,:cnonce) ].join(':')
3492 response.values_at(:nonce, :nc, :cnonce, :qop),
3533 if %w"username authzid realm nonce cnonce digest-uri qop".include? k

Completed in 224 milliseconds