/external/apache-http/src/org/apache/http/impl/auth/ |
DigestScheme.java | 105 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(); local 315 StringBuilder tmp3 = new StringBuilder(tmp2.length() + nonce.length() + cnonce.length() + 2); 320 tmp3.append(cnonce); 349 String cnonce = getCnonce(); local 475 String cnonce; local [all...] |
/external/chromium/net/http/ |
http_auth_handler_digest.cc | 32 // 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, [all...] |
http_auth_handler_digest.h | 152 const std::string& cnonce, 160 const std::string& cnonce,
|
http_auth_handler_digest_unittest.cc | 377 const char* cnonce; member in struct:net::__anon5499 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/chromium_org/net/http/ |
http_auth_handler_digest.cc | 34 // auth, | ?, md5, | MD5(MD5(A1):nonce:nc:cnonce:qop:MD5(A2)) | 41 // | md5-sess | MD5(user:realm:password):nonce:cnonce | 61 // This is how mozilla generates their cnonce -- a 16 digit hex string. 63 std::string cnonce; local 64 cnonce.reserve(16); 66 cnonce.push_back(domain[base::RandInt(0, 15)]); 67 return cnonce; 144 std::string cnonce = nonce_generator_->GenerateNonce(); local 153 cnonce, nonce_count_); 321 const std::string& cnonce, [all...] |
http_auth_handler_digest.h | 150 const std::string& cnonce, 157 const std::string& cnonce,
|
http_auth_handler_digest_unittest.cc | 390 const char* cnonce; member in struct:net::__anon11825 404 "082c875dcb2ca740", // cnonce 412 "qop=auth, nc=00000001, cnonce=\"082c875dcb2ca740\"" 425 "082c875dcb2ca740", // cnonce 433 "qop=auth, nc=00000001, cnonce=\"082c875dcb2ca740\"" 446 "6509bc74daed8263", // cnonce 454 "qop=auth, nc=00000001, cnonce=\"6509bc74daed8263\"" 467 "1522e61005789929", // cnonce 475 "qop=auth, nc=00000001, cnonce=\"1522e61005789929\"" 486 "", // cnonce [all...] |
/frameworks/base/core/java/android/net/http/ |
RequestHandle.java | 313 String cnonce = computeCnonce(); local 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.
|
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/ |
AuthenticationHelperImpl.java | 304 String cnonce = "xyz"; local 309 cnonce, // JvB added 337 authorization.setCNonce(cnonce); 371 String cnonce = "xyz"; local 375 cnonce, // JvB added 403 authorization.setCNonce(cnonce);
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
AuthenticationHeader.java | 76 public static final String CNONCE = ParameterNames.CNONCE; 111 || name.equalsIgnoreCase(ParameterNames.CNONCE) 418 * Set the CNonce. 420 * @param cnonce -- 423 public void setCNonce(String cnonce) throws ParseException { 424 this.setParameter(ParameterNames.CNONCE, cnonce); 428 * Get the CNonce. 430 * @return the cnonce value [all...] |
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/ |
__init__.py | 402 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, self.challenge['snonce'], headers_val [all...] |
/external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/ |
__init__.py | 402 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, self.challenge['snonce'], headers_val [all...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
httpcommon.cc | 800 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/chromium_org/third_party/libjingle/source/talk/base/ |
httpcommon.cc | 807 std::string cnonce, ncount; local 811 cnonce = DIGEST_CNONCE; 815 cnonce = MD5(buffer); 839 middle = nonce + ":" + ncount + ":" + cnonce + ":" + qop; 862 ss << ", cnonce=" << quote(cnonce);
|
/external/robolectric/lib/main/ |
httpclient-4.0.3.jar | |
/prebuilts/devtools/tools/lib/ |
httpclient-4.1.1.jar | |
/prebuilts/tools/common/http-client/ |
httpclient-4.1.1.jar | |
/prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpclient/4.1.1/ |
httpclient-4.1.1.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.apache.commons.httpclient_3.1.0.v201005080502.jar | |
org.mortbay.jetty.server_6.1.23.v201004211559.jar | |
/external/smack/asmack-master/lib/ |
httpclient-4.1.3.jar | |