HomeSort by relevance Sort by last modified time
    Searched refs:qop (Results 1 - 25 of 39) sorted by null

1 2

  /external/nist-sip/java/javax/sip/header/
AuthenticationInfoHeader.java 18 void setQop(String qop) throws ParseException;
AuthorizationHeader.java 25 void setQop(String qop) throws ParseException;
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelperImpl.java 299 // JvB: authHeader.getQop() is a quoted _list_ of qop values
302 String qop = (qopList != null) ? "auth" : null; local
310 method, uri, requestBody, qop,sipStack.getStackLogger());// jvb changed
335 if (qop != null) {
336 authorization.setQop(qop);
366 // JvB: authHeader.getQop() is a quoted _list_ of qop values
369 String qop = (qopList != null) ? "auth" : null; local
376 method, uri, requestBody, qop,sipStack.getStackLogger());// jvb changed
401 if (qop != null) {
402 authorization.setQop(qop);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
AuthenticationInfo.java 127 return this.getParameter(ParameterNames.QOP);
181 /** Sets the Qop value of the AuthenticationInfoHeader to the new
182 * <var>qop</var> parameter value.
184 * @param qop - the new Qop string of this AuthenticationInfoHeader.
186 * unexpectedly while parsing the Qop value.
189 public void setQop(String qop) throws ParseException {
190 this.setParameter(ParameterNames.QOP, qop);
213 if (name.equalsIgnoreCase(ParameterNames.QOP)
    [all...]
AuthenticationHeader.java 34 * 2005/06/12: geir.hedemark@telio.no: Changed behaviour of qop parameter in
36 * RFC3261, BNF element "message-qop" (as opposed to "qop-options",
60 public static final String QOP = ParameterNames.QOP;
109 if (name.equalsIgnoreCase(ParameterNames.QOP)
123 && name.equalsIgnoreCase(ParameterNames.QOP)) {
124 // NOP, QOP not quoted in authorization headers
311 * Sets the Qop value of the WWWAuthenicateHeader to the new <var>qop</var
    [all...]
  /external/smack/asmack-master/static-src/novell-openldap-jldap/com/novell/sasl/client/
DigestMD5SaslClient.java 58 * Assumes that the QOP, STRENGTH, and SERVER_AUTH properties are
109 String desiredQOP = (String)props.get(Sasl.QOP);
113 //only support qop equal to auth
131 * Assumes that the QOP, STRENGTH, and SERVER_AUTH properties are
243 "unwrap: QOP has neither integrity nor privacy>");
276 "wrap: QOP has neither integrity nor privacy>");
299 if (Sasl.QOP.equals(propName))
484 * @param qop qop-value: "", "auth", "auth-int"
498 String qop, /* qop-value: "", "auth", "auth-int" *
    [all...]
  /external/smack/src/com/novell/sasl/client/
DigestMD5SaslClient.java 58 * Assumes that the QOP, STRENGTH, and SERVER_AUTH properties are
109 String desiredQOP = (String)props.get(Sasl.QOP);
113 //only support qop equal to auth
131 * Assumes that the QOP, STRENGTH, and SERVER_AUTH properties are
243 "unwrap: QOP has neither integrity nor privacy>");
276 "wrap: QOP has neither integrity nor privacy>");
299 if (Sasl.QOP.equals(propName))
484 * @param qop qop-value: "", "auth", "auth-int"
498 String qop, /* qop-value: "", "auth", "auth-int" *
    [all...]
  /external/valgrind/main/VEX/priv/
ir_inject.c 44 #define qop(kind, a1, a2, a3, a4) IRExpr_Qop(kind, a1, a2, a3, a4) macro
232 data = qop(iricb.op, rounding_mode, opnd1, opnd2, opnd3);
243 data = qop(iricb.op, opnd1, opnd2, opnd3, opnd4);
ir_defs.c 1202 IRQop *qop = e->Iex.Qop.details; local
1725 IRQop* qop = LibVEX_Alloc(sizeof(IRQop)); local
2190 IRQop* qop = e->Iex.Qop.details; local
3486 IRQop* qop; local
3680 IRQop* qop = expr->Iex.Qop.details; local
3831 IRQop* qop = expr->Iex.Qop.details; local
    [all...]
ir_opt.c 309 IRQop* qop = ex->Iex.Qop.details; local
312 IRExpr_Qop(qop->op,
313 flatten_Expr(bb, qop->arg1),
314 flatten_Expr(bb, qop->arg2),
315 flatten_Expr(bb, qop->arg3),
316 flatten_Expr(bb, qop->arg4))));
2394 IRQop* qop = ex->Iex.Qop.details; local
    [all...]
host_amd64_isel.c 2661 IRQop *qop = e->Iex.Qop.details; local
2840 IRQop *qop = e->Iex.Qop.details; local
    [all...]
guest_ppc_toIR.c 551 static IRExpr* qop ( IROp op, IRExpr* a1, IRExpr* a2, function
    [all...]
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 55 * Currently only qop=auth or no qop is supported. qop=auth-int
141 // qop parsing
142 String qop = getParameter("qop"); local
143 if (qop != null) {
144 StringTokenizer tok = new StringTokenizer(qop,",");
159 throw new MalformedChallengeException("None of the qop methods is supported");
293 "Unsupported qop in HTTP Digest authentication");
    [all...]
  /external/chromium_org/net/http/
http_auth_handler_digest.h 137 static std::string QopToString(QualityOfProtection qop);
http_auth_handler_digest.cc 30 // qop |algorithm | response |
35 // auth, | ?, md5, | MD5(MD5(A1):nonce:nc:cnonce:qop:MD5(A2)) |
38 // qop |algorithm | A1 |
44 // qop |algorithm | A2 |
179 // [qop="<list-of-qop-values>"]
253 } else if (LowerCaseEqualsASCII(name, "qop")) {
255 // auth is the only supported qop, and all other values are ignored.
272 std::string HttpAuthHandlerDigest::QopToString(QualityOfProtection qop) {
273 switch (qop) {
    [all...]
  /external/chromium_org/third_party/webrtc/base/
httpcommon.cc 679 " qop=\"auth,auth-int\","
695 " qop=\"auth\","
802 std::string realm, nonce, qop, opaque; local
805 bool has_qop = HttpHasAttribute(args, "qop", &qop);
821 qop = "auth";
822 middle = nonce + ":" + ncount + ":" + cnonce + ":" + qop;
843 ss << ", qop=" << qop; local
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urllib2_localnet.py 81 def set_qop(self, qop):
82 self._qop = qop
127 "%(cnonce)s:%(qop)s:%(HA2)s" % final_dict
137 'qop="%s",'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urllib2_localnet.py 81 def set_qop(self, qop):
82 self._qop = qop
127 "%(cnonce)s:%(qop)s:%(HA2)s" % final_dict
137 'qop="%s",'
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_lowering_nv50.cpp 652 const uint8_t qop = QUADOP(SUBR, SUBR, SUBR, SUBR); local
656 bld.mkQuadop(qop, pred, l, bias, bias)->flagsDef = 0;
708 const uint8_t qop = QUADOP(SUBR, SUBR, SUBR, SUBR); local
711 bld.mkQuadop(qop, pred, l, lod, lod)->flagsDef = 0;
nv50_ir_build_util.h 78 Instruction *mkQuadop(uint8_t qop, Value *, uint8_t l, Value *, Value *);
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_lowering_nv50.cpp 652 const uint8_t qop = QUADOP(SUBR, SUBR, SUBR, SUBR); local
656 bld.mkQuadop(qop, pred, l, bias, bias)->flagsDef = 0;
708 const uint8_t qop = QUADOP(SUBR, SUBR, SUBR, SUBR); local
711 bld.mkQuadop(qop, pred, l, lod, lod)->flagsDef = 0;
nv50_ir_build_util.h 78 Instruction *mkQuadop(uint8_t qop, Value *, uint8_t l, Value *, Value *);
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 459 """Only do qop='auth' and MD5, since that
465 qop = self.challenge.get('qop', 'auth')
466 self.challenge['qop'] = ('auth' in [x.strip() for x in qop.split()]) and 'auth' or None
467 if self.challenge['qop'] is None:
468 raise UnimplementedDigestAuthOptionError( _("Unsupported value for qop: %s." % qop))
484 self.challenge['qop'], H(A2)
486 headers['Authorization'] = 'Digest username="%s", realm="%s", nonce="%s", uri="%s", algorithm=%s, response=%s, qop=%s, nc=%08x, cnonce="%s"' %
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urllib2.py     [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urllib2.py     [all...]

Completed in 859 milliseconds

1 2