diff options
author | ericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-27 03:19:42 +0000 |
---|---|---|
committer | ericroman@google.com <ericroman@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-27 03:19:42 +0000 |
commit | c3b35c2100dba30c517116bc9a5a4e4149c3a8e5 (patch) | |
tree | ff42c902c4ee9afd7864a2bda8e5e815a876bc76 /net/build/net.vcproj | |
parent | e5be6612288df667ca6ae4a86060bc883a498eea (diff) | |
download | chromium_src-c3b35c2100dba30c517116bc9a5a4e4149c3a8e5.zip chromium_src-c3b35c2100dba30c517116bc9a5a4e4149c3a8e5.tar.gz chromium_src-c3b35c2100dba30c517116bc9a5a4e4149c3a8e5.tar.bz2 |
Initial stab at http authentication (basic + digest) in new http stack.
General design:
- class HttpAuth -- utility class for http-auth logic.
- class HttpAuth::ChallengeTokenizer -- parsing of www-Authenticate headers.
- class HttpAuthHandler -- base class for authentication schemes (inspired by nsIHttpAuthenticator)
- class HttpAuthHandlerBasic : HttpAuthHandler -- logic for basic auth.
- class HttpAuthHandlerDigest : HttpAuthHandler -- logic for digest auth.
- The auth integration in HttpNetworkTransaction mimics that of HttpTransactionWinHttp:
+ HttpNetworkTransaction::ApplyAuth() -- set the authorization headers.
+ HttpNetworkTransaction::PopulateAuthChallenge() -- process the challenges.
BUG=2346
Review URL: http://codereview.chromium.org/4063
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2658 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/build/net.vcproj')
-rw-r--r-- | net/build/net.vcproj | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/net/build/net.vcproj b/net/build/net.vcproj index 68703cd..938c1e4 100644 --- a/net/build/net.vcproj +++ b/net/build/net.vcproj @@ -745,6 +745,70 @@ > </File> <File + RelativePath="..\http\http_auth.cc" + > + </File> + <File + RelativePath="..\http\http_auth.h" + > + </File> + <File + RelativePath="..\http\http_auth_handler.h" + > + </File> + <File + RelativePath="..\http\http_auth_handler.cc" + > + </File> + <File + RelativePath="..\http\http_auth_handler_basic.cc" + > + </File> + <File + RelativePath="..\http\http_auth_handler_basic.h" + > + </File> + <File + RelativePath="..\http\http_auth_handler_digest.cc" + > + </File> + <File + RelativePath="..\http\http_auth_handler_digest.h" + > + </File> + <File + RelativePath="..\http\http_auth.cc" + > + </File> + <File + RelativePath="..\http\http_auth.h" + > + </File> + <File + RelativePath="..\http\http_auth_handler.h" + > + </File> + <File + RelativePath="..\http\http_auth_handler.cc" + > + </File> + <File + RelativePath="..\http\http_auth_handler_basic.cc" + > + </File> + <File + RelativePath="..\http\http_auth_handler_basic.h" + > + </File> + <File + RelativePath="..\http\http_auth_handler_digest.cc" + > + </File> + <File + RelativePath="..\http\http_auth_handler_digest.h" + > + </File> + <File RelativePath="..\http\http_vary_data.cc" > </File> |