• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "net/base/auth.h"
6 #include "net/base/zap.h"
7 
8 namespace net {
9 
AuthChallengeInfo()10 AuthChallengeInfo::AuthChallengeInfo() : is_proxy(false) {
11 }
12 
Equals(const AuthChallengeInfo & that) const13 bool AuthChallengeInfo::Equals(const AuthChallengeInfo& that) const {
14   return (this->is_proxy == that.is_proxy &&
15           this->challenger.Equals(that.challenger) &&
16           this->scheme == that.scheme &&
17           this->realm == that.realm);
18 }
19 
~AuthChallengeInfo()20 AuthChallengeInfo::~AuthChallengeInfo() {
21 }
22 
AuthData()23 AuthData::AuthData() : state(AUTH_STATE_NEED_AUTH) {
24 }
25 
~AuthData()26 AuthData::~AuthData() {
27 }
28 
AuthCredentials()29 AuthCredentials::AuthCredentials() {
30 }
31 
AuthCredentials(const base::string16 & username,const base::string16 & password)32 AuthCredentials::AuthCredentials(const base::string16& username,
33                                  const base::string16& password)
34     : username_(username),
35       password_(password) {
36 }
37 
~AuthCredentials()38 AuthCredentials::~AuthCredentials() {
39 }
40 
Set(const base::string16 & username,const base::string16 & password)41 void AuthCredentials::Set(const base::string16& username,
42                           const base::string16& password) {
43   username_ = username;
44   password_ = password;
45 }
46 
Equals(const AuthCredentials & other) const47 bool AuthCredentials::Equals(const AuthCredentials& other) const {
48   return username_ == other.username_ && password_ == other.password_;
49 }
50 
Empty() const51 bool AuthCredentials::Empty() const {
52   return username_.empty() && password_.empty();
53 }
54 
Zap()55 void AuthCredentials::Zap() {
56   ZapString(&password_);
57 }
58 
59 }  // namespace net
60