Home
last modified time | relevance | path

Searched refs:qop (Results 1 – 25 of 27) sorted by relevance

12

/external/curl/lib/vauth/
Ddigest.c271 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 …]
Dkrb5_gssapi.c225 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()
Dkrb5_sspi.c283 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/
Dtest128616 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",…
Dtest15341 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/
DAuthenticationHelperImpl.java302 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/
Dnv50_ir_lowering_gm107.cpp208 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()
Dnv50_ir_lowering_nv50.cpp862 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()
Dnv50_ir_build_util.h82 Instruction *mkQuadop(uint8_t qop, Value *, uint8_t l, Value *, Value *);
/external/mesa3d/src/gallium/drivers/vc4/
Dvc4_qir.c94 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()
Dvc4_qir.h102 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/
DAuthenticationInfo.java189 public void setQop(String qop) throws ParseException { in setQop() argument
190 this.setParameter(ParameterNames.QOP, qop); in setQop()
DAuthenticationHeader.java321 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/
DDigestScheme.java142 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/
DAuthenticationInfoHeader.java18 void setQop(String qop) throws ParseException; in setQop() argument
DAuthorizationHeader.java25 void setQop(String qop) throws ParseException; in setQop() argument
/external/webrtc/webrtc/base/
Dhttpcommon.cc810 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/
Durllib2.py1008 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/
Dhttpd.wordlist193 "qop"
/external/curl/lib/
Dsocks_sspi.c86 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/
Dka-Latn-t-ka-m0-bgn-1981.txt171 ყოფილიყო qop’iliqo
462 ყოფნის qop’nis
/external/python/cpython2/Lib/test/
Dtest_urllib2_localnet.py132 def set_qop(self, qop): argument
133 self._qop = qop
/external/python/cpython3/Lib/test/
Dtest_urllib2_localnet.py90 def set_qop(self, qop): argument
91 self._qop = qop
/external/python/cpython3/Lib/urllib/
Drequest.py1120 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__.py630 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)

12