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

  /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_unittest.cc 377 const char* cnonce; member in struct:net::__anon5496
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 33 // auth, | ?, md5, | MD5(MD5(A1):nonce:nc:cnonce:qop:MD5(A2)) |
40 // | md5-sess | MD5(user:realm:password):nonce:cnonce |
60 // This is how mozilla generates their cnonce -- a 16 digit hex string.
62 std::string cnonce; local
63 cnonce.reserve(16);
65 cnonce.push_back(domain[base::RandInt(0, 15)]);
66 return cnonce;
143 std::string cnonce = nonce_generator_->GenerateNonce(); local
152 cnonce, nonce_count_);
320 const std::string& cnonce,
    [all...]
http_auth_handler_digest_unittest.cc 390 const char* cnonce; member in struct:net::__anon11150
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...]
  /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/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);
  /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/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/chromium_org/third_party/mongoose/
mongoose.c 2065 char *user, *uri, *cnonce, *response, *qop, *nc, *nonce; member in struct:ah
    [all...]
  /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 

Completed in 1787 milliseconds