Home | History | Annotate | Download | only in auth

Lines Matching defs:cnonce

105     private String cnonce;
156 // Reset cnonce
157 this.cnonce = null;
199 if (this.cnonce == null) {
200 this.cnonce = createCnonce();
202 return this.cnonce;
310 // ":" unq(cnonce-value)
312 String cnonce = getCnonce();
315 StringBuilder tmp3 = new StringBuilder(tmp2.length() + nonce.length() + cnonce.length() + 2);
320 tmp3.append(cnonce);
349 String cnonce = getCnonce();
352 + NC.length() + cnonce.length() + qopOption.length() + md5a2.length() + 5);
359 tmp2.append(cnonce);
412 params.add(new BasicNameValuePair("cnonce", getCnonce()));
469 * Creates a random cnonce value based on the current time.
471 * @return The cnonce value as String.
475 String cnonce;
479 cnonce = Long.toString(System.currentTimeMillis());
480 cnonce = encode(md5Helper.digest(EncodingUtils.getAsciiBytes(cnonce)));
482 return cnonce;