Home
last modified time | relevance | path

Searched refs:nonce_ (Results 1 – 3 of 3) sorted by relevance

/external/chromium/net/http/
Dhttp_auth_handler_digest.cc136 ha1 = MD5String(ha1 + ":" + nonce_ + ":" + cnonce); in AssembleResponseDigest()
147 return MD5String(ha1 + ":" + nonce_ + ":" + nc_part + ha2); in AssembleResponseDigest()
163 authorization += ", nonce=" + HttpUtil::Quote(nonce_); in AssembleCredentials()
217 realm_ = nonce_ = domain_ = opaque_ = std::string(); in ParseChallenge()
240 if (nonce_.empty()) in ParseChallenge()
251 nonce_ = value; in ParseChallengeProperty()
Dhttp_auth_handler_digest.h98 std::string nonce_; variable
Dhttp_auth_handler_digest_unittest.cc111 EXPECT_STREQ(tests[i].parsed_nonce, digest->nonce_.c_str()); in TEST()