Searched defs:cnonce (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/net/http/
H A DRequestHandle.java313 String cnonce = computeCnonce();
314 String digest = computeDigest(A1, A2, nonce, QOP, nc, cnonce);
332 response += ", qop=" + QOP + ", nc=" + nc + ", cnonce=" + doubleQuote(cnonce);
353 String A1, String A2, String nonce, String QOP, String nc, String cnonce) {
362 return KD(H(A1), nonce + ":" + nc + ":" + cnonce + ":" + QOP + ":" + H(A2));
426 * Computes a random cnonce value based on the current time.
352 computeDigest( String A1, String A2, String nonce, String QOP, String nc, String cnonce) argument

Completed in 54 milliseconds