Home
last modified time | relevance | path

Searched refs:qop (Results 1 – 25 of 28) 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()
375 char qop[] = DIGEST_QOP_VALUE_STRING_AUTH; in Curl_auth_create_digest_md5_message() local
481 Curl_MD5_update(ctxt, (const unsigned char *) qop, in Curl_auth_create_digest_md5_message()
482 curlx_uztoui(strlen(qop))); in Curl_auth_create_digest_md5_message()
496 cnonce, nonceCount, spn, resp_hash_hex, qop); in Curl_auth_create_digest_md5_message()
595 free(digest->qop); in Curl_auth_decode_digest_http_message()
596 digest->qop = strdup(DIGEST_QOP_VALUE_STRING_AUTH); in Curl_auth_decode_digest_http_message()
597 if(!digest->qop) in Curl_auth_decode_digest_http_message()
601 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.c293 unsigned long qop = 0; in Curl_auth_create_gssapi_security_message() local
353 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"
86 # - Remove quotes from qop="auth" used by SSPI
89 …0-9+\/=]+"$/$1REMOVED/; s/^(response=)"[a-f0-9]{32}"$/$1REMOVED/; s/^qop="auth"$/qop=auth/; $_ } s…
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",…
Dtest15352 WWW-Authenticate: Digest realm="testrealm", algorithm=MD5, nonce="999999", stale=true, qop="auth"
118 …trealm", nonce="999999", uri="/1530002", cnonce="MTA4MzIy", nc="00000001", qop="auth", response="2…
144 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/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/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()
588 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;
529 struct qinst *qir_inst(enum qop op, struct qreg dst,
/external/webrtc/rtc_base/
Dhttp_common.cc311 std::string realm, nonce, qop, opaque; in HttpAuthenticate() local
314 bool has_qop = HttpHasAttribute(args, "qop", &qop); in HttpAuthenticate()
332 qop = "auth"; in HttpAuthenticate()
333 middle = nonce + ":" + ncount + ":" + cnonce + ":" + qop; in HttpAuthenticate()
350 ss << ", qop=" << qop; in HttpAuthenticate()
/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/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/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/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/curl/lib/
Dsocks_sspi.c86 unsigned long qop; in Curl_SOCKS5_gssapi_negotiate() local
554 &qop); in Curl_SOCKS5_gssapi_negotiate()
/external/cldr/common/testData/transforms/
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.py91 def set_qop(self, qop): argument
92 self._qop = qop
/external/python/cpython3/Lib/urllib/
Drequest.py1144 qop = chal.get('qop')
1172 if qop is None:
1174 elif 'auth' in qop.split(','):
1186 raise URLError("qop '%s' is not supported." % qop)
1198 if qop:
/external/python/httplib2/python2/httplib2/
D__init__.py675 qop = self.challenge.get("qop", "auth")
677 ("auth" in [x.strip() for x in qop.split()]) and "auth" or None
681 _("Unsupported value for qop: %s." % qop)
/external/python/httplib2/python3/httplib2/
D__init__.py650 qop = self.challenge.get("qop", "auth")
652 ("auth" in [x.strip() for x in qop.split()]) and "auth" or None
656 _("Unsupported value for qop: %s." % qop)

12