Home | History | Annotate | Download | only in http

Lines Matching refs:realm

37 //          | ?, md5   | user:realm:password                      |
39 // | md5-sess | MD5(user:realm:password):nonce:cnonce |
112 // there is a rejection the realm hasn't changed.
117 std::string realm;
119 // Try to find the "stale" value, and also keep track of the realm
125 } else if (LowerCaseEqualsASCII(parameters.name(), "realm")) {
126 realm = parameters.value();
129 return (realm_ != realm) ?
175 // [realm="<realm-value>"]
184 // Note that according to RFC 2617 (section 1.2) the realm is required.
189 // send the realm (See http://crbug.com/20984 for an instance where a
190 // webserver was not sending the realm with a BASIC challenge).
230 if (LowerCaseEqualsASCII(name, "realm")) {
354 authorization += ", realm=" + HttpUtil::Quote(realm_);