/external/curl/lib/vauth/ |
D | digest.c | 271 char *qop, size_t qlen) in auth_decode_digest_md5_message() argument 310 if(!auth_digest_get_key_value((char *) chlg, "qop=\"", qop, qlen, '\"')) { in auth_decode_digest_md5_message() 376 char qop[] = DIGEST_QOP_VALUE_STRING_AUTH; in Curl_auth_create_digest_md5_message() local 480 Curl_MD5_update(ctxt, (const unsigned char *) qop, in Curl_auth_create_digest_md5_message() 481 curlx_uztoui(strlen(qop))); in Curl_auth_create_digest_md5_message() 495 cnonce, nonceCount, spn, resp_hash_hex, qop); in Curl_auth_create_digest_md5_message() 594 free(digest->qop); in Curl_auth_decode_digest_http_message() 595 digest->qop = strdup(DIGEST_QOP_VALUE_STRING_AUTH); in Curl_auth_decode_digest_http_message() 596 if(!digest->qop) in Curl_auth_decode_digest_http_message() 600 free(digest->qop); in Curl_auth_decode_digest_http_message() [all …]
|
D | krb5_gssapi.c | 225 gss_qop_t qop = GSS_C_QOP_DEFAULT; in Curl_auth_create_gssapi_security_message() local 276 &output_token, NULL, &qop); in Curl_auth_create_gssapi_security_message()
|
D | krb5_sspi.c | 283 unsigned long qop = 0; in Curl_auth_create_gssapi_security_message() local 337 status = s_pSecFn->DecryptMessage(krb5->context, &input_desc, 0, &qop); in Curl_auth_create_gssapi_security_message()
|
/external/curl/tests/data/ |
D | test1286 | 16 WWW-Authenticate: Digest realm="testrealm", nonce="1053604144", qop="auth" 40 WWW-Authenticate: Digest realm="testrealm", nonce="1053604144", qop="auth" 88 # - Remove quotes from qop="auth" used by SSPI 91 …0-9+\/=]+"$/$1REMOVED/; s/^(response=)"[a-f0-9]{32}"$/$1REMOVED/; s/^qop="auth"$/qop=auth/; $_ } s… 100 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",…
|
D | test153 | 41 WWW-Authenticate: Digest realm="testrealm", algorithm=MD5, nonce="999999", stale=true, qop="auth" 102 …trealm", nonce="999999", uri="/1530002", cnonce="MTA4MzIy", nc="00000001", qop="auth", response="2… 122 WWW-Authenticate: Digest realm="testrealm", algorithm=MD5, nonce="999999", stale=true, qop="auth"
|
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/ |
D | AuthenticationHelperImpl.java | 302 String qop = (qopList != null) ? "auth" : null; in getAuthorization() local 310 method, uri, requestBody, qop,sipStack.getStackLogger());// jvb changed in getAuthorization() 335 if (qop != null) { in getAuthorization() 336 authorization.setQop(qop); in getAuthorization() 369 String qop = (qopList != null) ? "auth" : null; in getAuthorization() local 376 method, uri, requestBody, qop,sipStack.getStackLogger());// jvb changed in getAuthorization() 401 if (qop != null) { in getAuthorization() 402 authorization.setQop(qop); in getAuthorization()
|
/external/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_lowering_gm107.cpp | 208 int qop = 0, xid = 0; in handleDFDX() local 212 qop = QUADOP(SUB, SUBR, SUB, SUBR); in handleDFDX() 216 qop = QUADOP(SUB, SUB, SUBR, SUBR); in handleDFDX() 228 insn->subOp = qop; in handleDFDX()
|
D | nv50_ir_lowering_nv50.cpp | 862 const uint8_t qop = QUADOP(SUBR, SUBR, SUBR, SUBR); in handleTXB() local 866 bld.mkQuadop(qop, pred, l, bias, bias)->flagsDef = 0; in handleTXB() 919 const uint8_t qop = QUADOP(SUBR, SUBR, SUBR, SUBR); in handleTXL() local 922 bld.mkQuadop(qop, pred, l, lod, lod)->flagsDef = 0; in handleTXL()
|
D | nv50_ir_build_util.h | 82 Instruction *mkQuadop(uint8_t qop, Value *, uint8_t l, Value *, Value *);
|
/external/mesa3d/src/gallium/drivers/vc4/ |
D | vc4_qir.c | 94 qir_get_op_name(enum qop qop) in qir_get_op_name() argument 96 if (qop < ARRAY_SIZE(qir_op_info) && qir_op_info[qop].name) in qir_get_op_name() 97 return qir_op_info[qop].name; in qir_get_op_name() 542 qir_inst(enum qop op, struct qreg dst, struct qreg src0, struct qreg src1) in qir_inst()
|
D | vc4_qir.h | 102 enum qop { enum 199 enum qop op; 560 struct qinst *qir_inst(enum qop op, struct qreg dst,
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
D | AuthenticationInfo.java | 189 public void setQop(String qop) throws ParseException { in setQop() argument 190 this.setParameter(ParameterNames.QOP, qop); in setQop()
|
D | AuthenticationHeader.java | 321 public void setQop(String qop) throws ParseException { in setQop() argument 322 if (qop == null) in setQop() 324 setParameter(ParameterNames.QOP, qop); in setQop()
|
/external/apache-http/src/org/apache/http/impl/auth/ |
D | DigestScheme.java | 142 String qop = getParameter("qop"); in processChallenge() local 143 if (qop != null) { in processChallenge() 144 StringTokenizer tok = new StringTokenizer(qop,","); in processChallenge()
|
/external/nist-sip/java/javax/sip/header/ |
D | AuthenticationInfoHeader.java | 18 void setQop(String qop) throws ParseException; in setQop() argument
|
D | AuthorizationHeader.java | 25 void setQop(String qop) throws ParseException; in setQop() argument
|
/external/webrtc/webrtc/base/ |
D | httpcommon.cc | 810 std::string realm, nonce, qop, opaque; in HttpAuthenticate() local 813 bool has_qop = HttpHasAttribute(args, "qop", &qop); in HttpAuthenticate() 829 qop = "auth"; in HttpAuthenticate() 830 middle = nonce + ":" + ncount + ":" + cnonce + ":" + qop; in HttpAuthenticate() 851 ss << ", qop=" << qop; in HttpAuthenticate()
|
/external/python/cpython2/Lib/ |
D | urllib2.py | 1008 qop = chal.get('qop') 1034 if qop == 'auth': 1043 noncebit = "%s:%s:%s:%s:%s" % (nonce, ncvalue, cnonce, qop, H(A2)) 1045 elif qop is None: 1049 raise URLError("qop '%s' is not supported." % qop) 1061 if qop:
|
/external/honggfuzz/examples/apache-httpd/ |
D | httpd.wordlist | 193 "qop"
|
/external/curl/lib/ |
D | socks_sspi.c | 86 unsigned long qop; in Curl_SOCKS5_gssapi_negotiate() local 552 &qop); in Curl_SOCKS5_gssapi_negotiate()
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/data/transformtest/ |
D | ka-Latn-t-ka-m0-bgn-1981.txt | 171 ყოფილიყო qop’iliqo 462 ყოფნის qop’nis
|
/external/python/cpython2/Lib/test/ |
D | test_urllib2_localnet.py | 132 def set_qop(self, qop): argument 133 self._qop = qop
|
/external/python/cpython3/Lib/test/ |
D | test_urllib2_localnet.py | 90 def set_qop(self, qop): argument 91 self._qop = qop
|
/external/python/cpython3/Lib/urllib/ |
D | request.py | 1120 qop = chal.get('qop') 1146 if qop == 'auth': 1154 noncebit = "%s:%s:%s:%s:%s" % (nonce, ncvalue, cnonce, qop, H(A2)) 1156 elif qop is None: 1160 raise URLError("qop '%s' is not supported." % qop) 1172 if qop:
|
/external/python/httplib2/python3/httplib2/ |
D | __init__.py | 630 qop = self.challenge.get("qop", "auth") 632 ("auth" in [x.strip() for x in qop.split()]) and "auth" or None 636 _("Unsupported value for qop: %s." % qop)
|