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

1 2 3

  /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/curl/lib/vauth/
digest.c 213 /* Tokenise the list of qop values. Use a temporary clone of the buffer since
251 * qop [in/out] - The buffer where the qop-options will be stored.
252 * qlen [in] - The length of the qop buffer.
260 char *qop, size_t qlen)
298 /* Retrieve qop-options string from the challenge */
299 if(!auth_digest_get_key_value((char *) chlg, "qop=\"", qop, qlen, '\"')) {
366 char qop[] = DIGEST_QOP_VALUE_STRING_AUTH; local
381 /* Get the qop-values from the qop-options *
    [all...]
krb5_gssapi.c 225 gss_qop_t qop = GSS_C_QOP_DEFAULT; local
274 /* Decrypt the inbound challenge and obtain the qop */
276 &output_token, NULL, &qop);
krb5_sspi.c 287 unsigned long qop = 0; local
340 /* Decrypt the inbound challenge and obtain the qop */
341 status = s_pSecFn->DecryptMessage(krb5->context, &input_desc, 0, &qop);
  /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/libmicrohttpd/src/microhttpd/
digestauth.c 138 * @param qop qop-value: "", "auth" or "auth-int"
141 * @param hentity H(entity body) if qop="auth-int"
149 const char *qop,
165 if (0 == strcasecmp(qop, "auth-int"))
182 if ('\0' != *qop)
188 MD5Update (&md5, qop, strlen(qop));
573 char qop[15]; /* auth,auth-int */ local
724 (0 == lookup_sub_value (qop, sizeof (qop), header, "qop")) |
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_lowering_gm107.cpp 190 int qop = 0, xid = 0; local
194 qop = QUADOP(SUB, SUBR, SUB, SUBR);
198 qop = QUADOP(SUB, SUB, SUBR, SUBR);
210 insn->subOp = qop;
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/store/imap/
DigestMd5Utils.java 49 private static final String DIGEST_QOP = "qop";
66 public String qop; field in class:DigestMd5Utils.Data
80 qop = "auth"; // Other config not supported
118 .append(DIGEST_QOP, qop);
153 cnonce-value, ":", qop-value, ":", toHex(getMd5(a2)) }))
181 + data.qop
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_qir.c 94 qir_get_op_name(enum qop qop)
96 if (qop < ARRAY_SIZE(qir_op_info) && qir_op_info[qop].name)
97 return qir_op_info[qop].name;
542 qir_inst(enum qop op, struct qreg dst, struct qreg src0, struct qreg src1)
vc4_qir.h 102 enum qop { enum
199 enum qop op;
560 struct qinst *qir_inst(enum qop op, struct qreg dst,
  /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/valgrind/VEX/priv/
ir_inject.c 45 #define qop(kind, a1, a2, a3, a4) IRExpr_Qop(kind, a1, a2, a3, a4) macro
269 data = qop(iricb.op, rounding_mode, opnd1, opnd2, opnd3);
301 data = qop(iricb.op, opnd1, opnd2, opnd3, opnd4);
ir_defs.c 1315 const IRQop *qop = e->Iex.Qop.details; local
1844 IRQop* qop = LibVEX_Alloc_inline(sizeof(IRQop)); local
2353 const IRQop* qop = e->Iex.Qop.details; local
3736 const IRQop* qop; local
3951 const IRQop* qop = expr->Iex.Qop.details; local
4155 const IRQop* qop = expr->Iex.Qop.details; local
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/utils/
HTTPRequest.java 92 Set<String> qops = splitValue(itemMap.remove("qop"));
119 * unq(qop-value) ":" H(A2) )
144 .append("qop=\"auth\", ")
261 // WWW-Authenticate: Digest realm="wi-fi.org", qop="auth",
270 // qop="auth"
284 String nonce, String cnonce, String nc, String qop, String expect)
290 byte[] response = hash(a1, nonce, nc, cnonce, qop, a2);
299 .append("qop=\"").append(qop).append("\", ")
  /external/webrtc/webrtc/base/
httpcommon.cc 687 " qop=\"auth,auth-int\","
703 " qop=\"auth\","
810 std::string realm, nonce, qop, opaque; local
813 bool has_qop = HttpHasAttribute(args, "qop", &qop);
829 qop = "auth";
830 middle = nonce + ":" + ncount + ":" + cnonce + ":" + qop;
851 ss << ", qop=" << qop; local
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
urllib2.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_urllib2_localnet.py 79 def set_qop(self, qop):
80 self._qop = qop
125 "%(cnonce)s:%(qop)s:%(HA2)s" % final_dict
135 'qop="%s",'
  /external/curl/lib/
socks_sspi.c 85 unsigned long qop; local
551 &qop);
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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",'

Completed in 2027 milliseconds

1 2 3