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

Side by Side Diff: remoting/protocol/me2me_host_authenticator_factory.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: Reviewer comments 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 unified diff | Download patch
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 17
17 namespace remoting { 18 namespace remoting {
18 19
19 class RsaKeyPair; 20 class RsaKeyPair;
20 21
21 namespace protocol { 22 namespace protocol {
22 23
23 class Me2MeHostAuthenticatorFactory : public AuthenticatorFactory { 24 class Me2MeHostAuthenticatorFactory : public AuthenticatorFactory {
24 public: 25 public:
25 Me2MeHostAuthenticatorFactory( 26 Me2MeHostAuthenticatorFactory(
26 const std::string& local_cert, 27 const std::string& local_cert,
27 scoped_refptr<RsaKeyPair> key_pair, 28 scoped_refptr<RsaKeyPair> key_pair,
28 const SharedSecretHash& shared_secret_hash); 29 const SharedSecretHash& shared_secret_hash,
30 scoped_ptr<ThirdPartyHostAuthenticator::TokenValidatorFactory>
31 token_validator_factory);
29 virtual ~Me2MeHostAuthenticatorFactory(); 32 virtual ~Me2MeHostAuthenticatorFactory();
30 33
31 // AuthenticatorFactory interface. 34 // AuthenticatorFactory interface.
32 virtual scoped_ptr<Authenticator> CreateAuthenticator( 35 virtual scoped_ptr<Authenticator> CreateAuthenticator(
33 const std::string& local_jid, 36 const std::string& local_jid,
34 const std::string& remote_jid, 37 const std::string& remote_jid,
35 const buzz::XmlElement* first_message) OVERRIDE; 38 const buzz::XmlElement* first_message) OVERRIDE;
36 39
37 private: 40 private:
38 std::string local_jid_prefix_; 41 std::string local_jid_prefix_;
42
43 // Used for all host authenticators.
39 std::string local_cert_; 44 std::string local_cert_;
45
46 // Used only for shared secret host authenticators.
40 scoped_refptr<RsaKeyPair> key_pair_; 47 scoped_refptr<RsaKeyPair> key_pair_;
41 SharedSecretHash shared_secret_hash_; 48 SharedSecretHash shared_secret_hash_;
42 49
50 // Used only for third party host authenticators.
51 scoped_ptr<ThirdPartyHostAuthenticator::TokenValidatorFactory>
52 token_validator_factory_;
53
43 DISALLOW_COPY_AND_ASSIGN(Me2MeHostAuthenticatorFactory); 54 DISALLOW_COPY_AND_ASSIGN(Me2MeHostAuthenticatorFactory);
44 }; 55 };
45 56
46 } // namespace protocol 57 } // namespace protocol
47 } // namespace remoting 58 } // namespace remoting
48 59
49 #endif // REMOTING_PROTOCOL_ME2ME_HOST_AUTHENTICATOR_FACTORY_H_ 60 #endif // REMOTING_PROTOCOL_ME2ME_HOST_AUTHENTICATOR_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698