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

  /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/chromium/net/http/
http_auth_handler_digest.h 48 // Possible values for "qop" -- may be or-ed together if there were
71 static std::string QopToString(int qop);
http_auth_handler_digest.cc 15 // TODO(eroman): support qop=auth-int
23 // qop |algorithm | response |
28 // auth, | ?, md5, | MD5(MD5(A1):nonce:nc:cnonce:qop:MD5(A2)) |
31 // qop |algorithm | A1 |
37 // qop |algorithm | A2 |
57 std::string HttpAuthHandlerDigest::QopToString(int qop) {
58 switch (qop) {
139 // TODO(eroman): need to add MD5(req-entity-body) for qop=auth-int.
179 // TODO(eroman): Supposedly IIS server requires quotes surrounding qop.
180 authorization += ", qop=" + QopToString(qop_)
    [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
136 // qop parsing
137 String qop = getParameter("qop"); local
138 if (qop != null) {
139 StringTokenizer tok = new StringTokenizer(qop,",");
154 throw new MalformedChallengeException("None of the qop methods is supported");
288 "Unsupported qop in HTTP Digest authentication");
    [all...]
  /frameworks/base/core/java/android/webkit/
LoadListener.java 910 String qop = mAuthHeader.getQop(); local
    [all...]

Completed in 346 milliseconds