Searched refs:cnonce (Results 1 - 10 of 10) 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.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...]
H A Dhttp_auth_handler_digest.h152 const std::string& cnonce,
160 const std::string& cnonce,
H A Dhttp_auth_handler_digest_unittest.cc377 const char* cnonce; member in struct:net::__anon2926
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...]
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
H A DAuthenticationHelperImpl.java304 String cnonce = "xyz";
309 cnonce, // JvB added
337 authorization.setCNonce(cnonce);
371 String cnonce = "xyz";
375 cnonce, // JvB added
403 authorization.setCNonce(cnonce);
/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/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
H A D__init__.py402 def _wsse_username_token(cnonce, iso_now, password):
403 return base64.b64encode(_sha("%s%s%s" % (cnonce, iso_now, password)).digest()).strip()
475 def request(self, method, request_uri, headers, content, cnonce = None):
480 self.challenge['cnonce'] = cnonce or _cnonce()
483 self.challenge['cnonce'],
486 headers['Authorization'] = 'Digest username="%s", realm="%s", nonce="%s", uri="%s", algorithm=%s, response=%s, qop=%s, nc=%08x, cnonce="%s"' % (
495 self.challenge['cnonce'],
556 cnonce = _cnonce()
557 request_digest = "%s:%s:%s:%s:%s" % (method, request_uri, cnonce, sel
[all...]
/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 578 milliseconds