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

/external/apache-http/src/org/apache/http/impl/auth/
H A DDigestScheme.java105 private String cnonce; field in class:DigestScheme
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);
[all...]
/external/chromium/net/http/
H A Dhttp_auth_handler_digest_unittest.cc377 const char* cnonce; member in struct:net::__anon2513
391 "082c875dcb2ca740", // cnonce
399 "qop=auth, nc=00000001, cnonce=\"082c875dcb2ca740\""
412 "082c875dcb2ca740", // cnonce
420 "qop=auth, nc=00000001, cnonce=\"082c875dcb2ca740\""
433 "6509bc74daed8263", // cnonce
441 "qop=auth, nc=00000001, cnonce=\"6509bc74daed8263\""
454 "1522e61005789929", // cnonce
462 "qop=auth, nc=00000001, cnonce=\"1522e61005789929\""
473 "", // cnonce
[all...]
H A Dhttp_auth_handler_digest.cc32 // auth, | ?, md5, | MD5(MD5(A1):nonce:nc:cnonce:qop:MD5(A2)) |
39 // | md5-sess | MD5(user:realm:password):nonce:cnonce |
59 // This is how mozilla generates their cnonce -- a 16 digit hex string.
61 std::string cnonce; local
62 cnonce.reserve(16);
64 cnonce.push_back(domain[base::RandInt(0, 15)]);
65 return cnonce;
145 std::string cnonce = nonce_generator_->GenerateNonce(); local
156 cnonce, nonce_count_);
320 const std::string& cnonce,
315 AssembleResponseDigest( const std::string& method, const std::string& path, const string16& username, const string16& password, const std::string& cnonce, const std::string& nc) const argument
341 AssembleCredentials( const std::string& method, const std::string& path, const string16& username, const string16& password, const std::string& cnonce, int nonce_count) const argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAuthenticationHeader.java420 * @param cnonce --
423 public void setCNonce(String cnonce) throws ParseException { argument
424 this.setParameter(ParameterNames.CNONCE, cnonce);
430 * @return the cnonce value.
/external/chromium/third_party/libjingle/source/talk/base/
H A Dhttpcommon.cc800 std::string cnonce, ncount; local
804 cnonce = DIGEST_CNONCE;
808 cnonce = MD5(buffer);
832 middle = nonce + ":" + ncount + ":" + cnonce + ":" + qop;
855 ss << ", cnonce=" << quote(cnonce);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.httpclient_3.1.0.v201005080502.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 209 milliseconds