HomeSort by relevance Sort by last modified time
    Searched refs:cnonce (Results 1 - 21 of 21) sorted by null

  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 110 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(); local
320 StringBuilder tmp3 = new StringBuilder(tmp2.length() + nonce.length() + cnonce.length() + 2);
325 tmp3.append(cnonce);
354 String cnonce = getCnonce(); local
480 String cnonce; local
    [all...]
  /external/chromium_org/net/http/
http_auth_handler_digest.cc 35 // 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,
    [all...]
http_auth_handler_digest.h 150 const std::string& cnonce,
157 const std::string& cnonce,
http_auth_handler_digest_unittest.cc 392 const char* cnonce; member in struct:net::__anon13896
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...]
  /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_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_org/third_party/webrtc/base/
httpcommon.cc 790 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/
httpclient-4.0.3.jar 
  /external/chromium_org/third_party/libaddressinput/src/java/testlibs/
httpclient-4.1.1.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 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.httpcomponents.httpclient_4.1.3.v201209201135.jar 
  /prebuilts/tools/common/google-api-java-client/1.8.0-rc/
google-api-java-client-min-repackaged.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.apache.httpcomponents.httpclient_4.1.3.v201209201135.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
wagon-http-2.6-shaded.jar 

Completed in 614 milliseconds