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

Side by Side Diff: remoting/protocol/me2me_host_authenticator_factory.h

Issue 165293004: Refactor TokenValidatorImpl into a base class + implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef REMOTING_PROTOCOL_ME2ME_HOST_AUTHENTICATOR_FACTORY_H_ 5 #ifndef REMOTING_PROTOCOL_ME2ME_HOST_AUTHENTICATOR_FACTORY_H_
6 #define REMOTING_PROTOCOL_ME2ME_HOST_AUTHENTICATOR_FACTORY_H_ 6 #define REMOTING_PROTOCOL_ME2ME_HOST_AUTHENTICATOR_FACTORY_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/compiler_specific.h" 11 #include "base/compiler_specific.h"
12 #include "base/memory/ref_counted.h" 12 #include "base/memory/ref_counted.h"
13 #include "base/memory/scoped_ptr.h" 13 #include "base/memory/scoped_ptr.h"
14 #include "remoting/protocol/authentication_method.h" 14 #include "remoting/protocol/authentication_method.h"
15 #include "remoting/protocol/authenticator.h" 15 #include "remoting/protocol/authenticator.h"
16 #include "remoting/protocol/third_party_host_authenticator.h" 16 #include "remoting/protocol/third_party_host_authenticator.h"
17 #include "remoting/protocol/token_validator.h"
17 18
18 namespace remoting { 19 namespace remoting {
19 20
20 class RsaKeyPair; 21 class RsaKeyPair;
21 22
22 namespace protocol { 23 namespace protocol {
23 24
24 class PairingRegistry; 25 class PairingRegistry;
25 26
26 class Me2MeHostAuthenticatorFactory : public AuthenticatorFactory { 27 class Me2MeHostAuthenticatorFactory : public AuthenticatorFactory {
27 public: 28 public:
28 // Create a factory that dispenses shared secret authenticators. 29 // Create a factory that dispenses shared secret authenticators.
29 static scoped_ptr<AuthenticatorFactory> CreateWithSharedSecret( 30 static scoped_ptr<AuthenticatorFactory> CreateWithSharedSecret(
30 bool use_service_account, 31 bool use_service_account,
31 const std::string& host_owner, 32 const std::string& host_owner,
32 const std::string& local_cert, 33 const std::string& local_cert,
33 scoped_refptr<RsaKeyPair> key_pair, 34 scoped_refptr<RsaKeyPair> key_pair,
34 const SharedSecretHash& shared_secret_hash, 35 const SharedSecretHash& shared_secret_hash,
35 scoped_refptr<PairingRegistry> pairing_registry); 36 scoped_refptr<PairingRegistry> pairing_registry);
36 37
37 // Create a factory that dispenses third party authenticators. 38 // Create a factory that dispenses third party authenticators.
38 static scoped_ptr<AuthenticatorFactory> CreateWithThirdPartyAuth( 39 static scoped_ptr<AuthenticatorFactory> CreateWithThirdPartyAuth(
39 bool use_service_account, 40 bool use_service_account,
40 const std::string& host_owner, 41 const std::string& host_owner,
41 const std::string& local_cert, 42 const std::string& local_cert,
42 scoped_refptr<RsaKeyPair> key_pair, 43 scoped_refptr<RsaKeyPair> key_pair,
43 scoped_ptr<ThirdPartyHostAuthenticator::TokenValidatorFactory> 44 scoped_ptr<TokenValidatorFactory> token_validator_factory);
44 token_validator_factory);
45 45
46 // Create a factory that dispenses rejecting authenticators (used when the 46 // Create a factory that dispenses rejecting authenticators (used when the
47 // host config/policy is inconsistent) 47 // host config/policy is inconsistent)
48 static scoped_ptr<AuthenticatorFactory> CreateRejecting(); 48 static scoped_ptr<AuthenticatorFactory> CreateRejecting();
49 49
50 Me2MeHostAuthenticatorFactory(); 50 Me2MeHostAuthenticatorFactory();
51 virtual ~Me2MeHostAuthenticatorFactory(); 51 virtual ~Me2MeHostAuthenticatorFactory();
52 52
53 // AuthenticatorFactory interface. 53 // AuthenticatorFactory interface.
54 virtual scoped_ptr<Authenticator> CreateAuthenticator( 54 virtual scoped_ptr<Authenticator> CreateAuthenticator(
55 const std::string& local_jid, 55 const std::string& local_jid,
56 const std::string& remote_jid, 56 const std::string& remote_jid,
57 const buzz::XmlElement* first_message) OVERRIDE; 57 const buzz::XmlElement* first_message) OVERRIDE;
58 58
59 private: 59 private:
60 // Used for all host authenticators. 60 // Used for all host authenticators.
61 bool use_service_account_; 61 bool use_service_account_;
62 std::string host_owner_; 62 std::string host_owner_;
63 std::string local_cert_; 63 std::string local_cert_;
64 scoped_refptr<RsaKeyPair> key_pair_; 64 scoped_refptr<RsaKeyPair> key_pair_;
65 65
66 // Used only for shared secret host authenticators. 66 // Used only for shared secret host authenticators.
67 SharedSecretHash shared_secret_hash_; 67 SharedSecretHash shared_secret_hash_;
68 68
69 // Used only for third party host authenticators. 69 // Used only for third party host authenticators.
70 scoped_ptr<ThirdPartyHostAuthenticator::TokenValidatorFactory> 70 scoped_ptr<TokenValidatorFactory> token_validator_factory_;
71 token_validator_factory_;
72 71
73 // Used only for pairing host authenticators. 72 // Used only for pairing host authenticators.
74 scoped_refptr<PairingRegistry> pairing_registry_; 73 scoped_refptr<PairingRegistry> pairing_registry_;
75 74
76 DISALLOW_COPY_AND_ASSIGN(Me2MeHostAuthenticatorFactory); 75 DISALLOW_COPY_AND_ASSIGN(Me2MeHostAuthenticatorFactory);
77 }; 76 };
78 77
79 } // namespace protocol 78 } // namespace protocol
80 } // namespace remoting 79 } // namespace remoting
81 80
82 #endif // REMOTING_PROTOCOL_ME2ME_HOST_AUTHENTICATOR_FACTORY_H_ 81 #endif // REMOTING_PROTOCOL_ME2ME_HOST_AUTHENTICATOR_FACTORY_H_
OLDNEW
« no previous file with comments | « remoting/host/token_validator_factory_impl_unittest.cc ('k') | remoting/protocol/me2me_host_authenticator_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698