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

  /external/nist-sip/java/javax/sip/header/
AuthenticationInfoHeader.java 9 void setCNonce(String cNonce) throws ParseException;
AuthorizationHeader.java 13 void setCNonce(String cNonce) throws ParseException;
  /external/nist-sip/java/gov/nist/javax/sip/header/
AuthenticationInfo.java 90 /** Returns the CNonce value of this AuthenticationInfoHeader.
92 * @return the String representing the cNonce information, null if value is
97 return this.getParameter(ParameterNames.CNONCE);
139 /** Sets the CNonce of the AuthenticationInfoHeader to the <var>cNonce</var>
142 * @param cNonce - the new cNonce String of this AuthenticationInfoHeader.
144 * unexpectedly while parsing the cNonce value.
147 public void setCNonce(String cNonce) throws ParseException {
148 this.setParameter(ParameterNames.CNONCE, cNonce)
    [all...]
Credentials.java 51 private static String CNONCE = ParameterNames.CNONCE;
116 else if (nameValue.getName().compareToIgnoreCase(CNONCE) == 0)
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...]
ParameterNames.java 50 public static final String CNONCE = "cnonce";
  /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_unittest.cc 377 const char* cnonce; member in struct:net::__anon4077
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...]
http_auth_handler_digest.h 152 const std::string& cnonce,
160 const std::string& cnonce,
http_network_transaction_unittest.cc     [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/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/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/net/tools/testserver/
testserver.py 989 if 'qop' in pairs and 'nc' in pairs and 'cnonce' in pairs:
991 pairs['cnonce'], pairs['qop'], hash_a2])).hexdigest()
    [all...]

Completed in 441 milliseconds