Home | History | Annotate | Download | only in auth

Lines Matching defs:nonce

98     //TODO: supply a real nonce-count, currently a server will interprete a repeated request as a replay  
99 private static final String NC = "00000001"; //nonce-count is always 1
131 if (getParameter("nonce") == null) {
132 throw new MalformedChallengeException("missing nonce in challange");
264 String nonce = getParameter("nonce");
273 if (nonce == null) {
274 throw new IllegalStateException("Nonce may not be null");
309 // ":" unq(nonce-value)
315 StringBuilder tmp3 = new StringBuilder(tmp2.length() + nonce.length() + cnonce.length() + 2);
318 tmp3.append(nonce);
340 StringBuilder tmp2 = new StringBuilder(md5a1.length() + nonce.length() + md5a2.length());
343 tmp2.append(nonce);
351 StringBuilder tmp2 = new StringBuilder(md5a1.length() + nonce.length()
355 tmp2.append(nonce);
395 String nonce = getParameter("nonce");
405 params.add(new BasicNameValuePair("nonce", nonce));