Home | History | Annotate | Download | only in http

Lines Matching defs:cnonce

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;
63 cnonce.reserve(16);
65 cnonce.push_back(domain[base::RandInt(0, 15)]);
66 return cnonce;
143 std::string cnonce = nonce_generator_->GenerateNonce();
152 cnonce, nonce_count_);
320 const std::string& cnonce,
328 ha1 = base::MD5String(ha1 + ":" + nonce_ + ":" + cnonce);
336 nc_part = nc + ":" + cnonce + ":" + QopToString(qop_) + ":";
346 const std::string& cnonce,
363 cnonce, nc);
375 authorization += ", cnonce=" + HttpUtil::Quote(cnonce);