Home | History | Annotate | Download | only in auth

Lines Matching defs:qop

55  * Currently only qop=auth or no qop is supported. qop=auth-int
141 // qop parsing
142 String qop = getParameter("qop");
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");
334 // Unhandled qop auth-int
415 params.add(new BasicNameValuePair("qop", getQopVariantString()));
432 "qop".equals(param.getName());