Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(537)

Unified Diff: net/http/http_auth_handler_digest.h

Issue 5034001: Remove static "set_fixed_cnonce" in favor of NonceGenerator objects.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | net/http/http_auth_handler_digest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_auth_handler_digest.h
===================================================================
--- net/http/http_auth_handler_digest.h (revision 66137)
+++ net/http/http_auth_handler_digest.h (working copy)
@@ -9,6 +9,7 @@
#include <string>
#include "base/gtest_prod_util.h"
+#include "base/scoped_ptr.h"
#include "base/string16.h"
#include "net/http/http_auth_handler.h"
#include "net/http/http_auth_handler_factory.h"
@@ -18,6 +19,28 @@
// Code for handling http digest authentication.
class HttpAuthHandlerDigest : public HttpAuthHandler {
public:
+ class NonceGenerator {
+ public:
+ virtual ~NonceGenerator();
+ virtual std::string GenerateNonce() const = 0;
+ };
+
+ class DynamicNonceGenerator : public NonceGenerator {
+ public:
+ virtual std::string GenerateNonce() const;
+ };
+
+ // For unit tests
+ class FixedNonceGenerator : public NonceGenerator {
+ public:
+ explicit FixedNonceGenerator(const std::string& nonce);
+
+ virtual std::string GenerateNonce() const;
+
+ private:
+ std::string nonce_;
eroman 2010/11/16 00:02:35 nit: const
+ };
+
class Factory : public HttpAuthHandlerFactory {
public:
Factory();
@@ -30,6 +53,11 @@
int digest_nonce_count,
const BoundNetLog& net_log,
scoped_ptr<HttpAuthHandler>* handler);
+
+ void set_nonce_generator(const NonceGenerator* nonce_generator);
eroman 2010/11/16 00:02:35 should mention ownership. (even though it is a co
+
+ private:
+ scoped_ptr<const NonceGenerator> nonce_generator_;
};
HttpAuth::AuthorizationResult HandleAnotherChallenge(
@@ -70,7 +98,7 @@
QOP_AUTH,
};
- explicit HttpAuthHandlerDigest(int nonce_count);
+ HttpAuthHandlerDigest(int nonce_count, const NonceGenerator* nonce_generator);
eroman 2010/11/16 00:02:35 Please mention ownerhsip model.
~HttpAuthHandlerDigest();
// Parse the challenge, saving the results into this instance.
@@ -110,11 +138,6 @@
const std::string& cnonce,
int nonce_count) const;
- // Forces cnonce to be the same each time. This is used for unit tests.
- static void SetFixedCnonce(bool fixed_cnonce) {
- fixed_cnonce_ = fixed_cnonce;
- }
-
// Information parsed from the challenge.
std::string nonce_;
std::string domain_;
@@ -124,9 +147,7 @@
QualityOfProtection qop_;
int nonce_count_;
-
- // Forces the cnonce to be the same each time, for unit tests.
- static bool fixed_cnonce_;
+ const NonceGenerator* nonce_generator_;
};
} // namespace net
« no previous file with comments | « no previous file | net/http/http_auth_handler_digest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698