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

/external/apache-http/src/org/apache/http/impl/auth/
H A DDigestScheme.java110 private String cnonce; field in class:DigestScheme
161 // Reset cnonce
162 this.cnonce = null;
204 if (this.cnonce == null) {
205 this.cnonce = createCnonce();
207 return this.cnonce;
315 // ":" unq(cnonce-value)
317 String cnonce = getCnonce();
320 StringBuilder tmp3 = new StringBuilder(tmp2.length() + nonce.length() + cnonce.length() + 2);
325 tmp3.append(cnonce);
[all...]
/external/chromium_org/net/http/
H A Dhttp_auth_handler_digest.cc35 // auth, | ?, md5, | MD5(MD5(A1):nonce:nc:cnonce:qop:MD5(A2)) |
42 // | md5-sess | MD5(user:realm:password):nonce:cnonce |
62 // This is how mozilla generates their cnonce -- a 16 digit hex string.
64 std::string cnonce; local
65 cnonce.reserve(16);
67 cnonce.push_back(domain[base::RandInt(0, 15)]);
68 return cnonce;
145 std::string cnonce = nonce_generator_->GenerateNonce(); local
154 cnonce, nonce_count_);
322 const std::string& cnonce,
318 AssembleResponseDigest( const std::string& method, const std::string& path, const AuthCredentials& credentials, const std::string& cnonce, const std::string& nc) const argument
344 AssembleCredentials( const std::string& method, const std::string& path, const AuthCredentials& credentials, const std::string& cnonce, int nonce_count) const argument
[all...]
H A Dhttp_auth_handler_digest.h150 const std::string& cnonce,
157 const std::string& cnonce,
H A Dhttp_auth_handler_digest_unittest.cc392 const char* cnonce; member in struct:net::__anon9271
406 "082c875dcb2ca740", // cnonce
414 "qop=auth, nc=00000001, cnonce=\"082c875dcb2ca740\""
427 "082c875dcb2ca740", // cnonce
435 "qop=auth, nc=00000001, cnonce=\"082c875dcb2ca740\""
448 "6509bc74daed8263", // cnonce
456 "qop=auth, nc=00000001, cnonce=\"6509bc74daed8263\""
469 "1522e61005789929", // cnonce
477 "qop=auth, nc=00000001, cnonce=\"1522e61005789929\""
488 "", // 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_org/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_org/third_party/webrtc/base/
H A Dhttpcommon.cc790 std::string cnonce, ncount; local
794 cnonce = DIGEST_CNONCE;
798 cnonce = MD5(buffer);
822 middle = nonce + ":" + ncount + ":" + cnonce + ":" + qop;
845 ss << ", cnonce=" << quote(cnonce);
/external/robolectric/lib/main/
H A Dhttpclient-4.0.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
/external/chromium_org/third_party/libaddressinput/src/java/testlibs/
H A Dhttpclient-4.1.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/impl/ ...
/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 ...
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 440 milliseconds