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

Unified Diff: remoting/host/token_validator_factory_impl.h

Issue 12313085: Host-side third party token validation (Closed) Base URL: http://git.chromium.org/chromium/src.git@third_party_auth_protocol
Patch Set: Add TODO comment Created 7 years, 8 months 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 | « remoting/host/remoting_me2me_host.cc ('k') | remoting/host/token_validator_factory_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/token_validator_factory_impl.h
diff --git a/remoting/host/token_validator_factory_impl.h b/remoting/host/token_validator_factory_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..042f8e2214f2940d90448f4f5e9f6430f10046c7
--- /dev/null
+++ b/remoting/host/token_validator_factory_impl.h
@@ -0,0 +1,50 @@
+// Copyright 2013 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef REMOTING_HOST_TOKEN_VALIDATOR_FACTORY_IMPL_H_
+#define REMOTING_HOST_TOKEN_VALIDATOR_FACTORY_IMPL_H_
+
+#include <set>
+#include <string>
+
+#include "base/basictypes.h"
+#include "net/url_request/url_request_context_getter.h"
+#include "remoting/protocol/third_party_host_authenticator.h"
+
+namespace remoting {
+
+// This class dispenses |TokenValidator| implementations that use a UrlFetcher
+// to contact a |token_validation_url| and exchange the |token| for a
+// |shared_secret|.
+class TokenValidatorFactoryImpl
+ : public protocol::ThirdPartyHostAuthenticator::TokenValidatorFactory {
+ public:
+ // Creates a new factory. |token_url| and |token_validation_url| are the
+ // third party authentication service URLs, obtained via policy. |key_pair_|
+ // is used by the host to authenticate with the service by signing the token.
+ TokenValidatorFactoryImpl(
+ const GURL& token_url,
+ const GURL& token_validation_url,
+ scoped_refptr<RsaKeyPair> key_pair,
+ scoped_refptr<net::URLRequestContextGetter> request_context_getter);
+
+ virtual ~TokenValidatorFactoryImpl();
+
+ // TokenValidatorFactory interface.
+ virtual scoped_ptr<protocol::ThirdPartyHostAuthenticator::TokenValidator>
+ CreateTokenValidator(const std::string& local_jid,
+ const std::string& remote_jid) OVERRIDE;
+
+ private:
+ GURL token_url_;
+ GURL token_validation_url_;
+ scoped_refptr<RsaKeyPair> key_pair_;
+ scoped_refptr<net::URLRequestContextGetter> request_context_getter_;
+
+ DISALLOW_COPY_AND_ASSIGN(TokenValidatorFactoryImpl);
+};
+
+} // namespace remoting
+
+#endif // REMOTING_HOST_URL_FETCHER_TOKEN_VALIDATOR_FACTORY_H_
« no previous file with comments | « remoting/host/remoting_me2me_host.cc ('k') | remoting/host/token_validator_factory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698