OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_V1_AUTHENTICATOR_H_ | 5 #ifndef REMOTING_PROTOCOL_V1_AUTHENTICATOR_H_ |
6 #define REMOTING_PROTOCOL_V1_AUTHENTICATOR_H_ | 6 #define REMOTING_PROTOCOL_V1_AUTHENTICATOR_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "remoting/protocol/authenticator.h" | 11 #include "remoting/protocol/authenticator.h" |
12 | 12 |
13 namespace crypto { | 13 namespace crypto { |
14 class RSAPrivateKey; | 14 class RSAPrivateKey; |
15 } // namespace base | 15 } // namespace base |
16 | 16 |
17 namespace remoting { | 17 namespace remoting { |
18 namespace protocol { | 18 namespace protocol { |
19 | 19 |
20 class V1ClientAuthenticator : public Authenticator { | 20 class V1ClientAuthenticator : public Authenticator { |
21 public: | 21 public: |
22 explicit V1ClientAuthenticator(const std::string& local_jid, | 22 V1ClientAuthenticator(const std::string& local_jid, |
23 const std::string& shared_secret); | 23 const std::string& shared_secret); |
24 virtual ~V1ClientAuthenticator(); | 24 virtual ~V1ClientAuthenticator(); |
25 | 25 |
26 // Authenticator interface. | 26 // Authenticator interface. |
27 virtual State state() const OVERRIDE; | 27 virtual State state() const OVERRIDE; |
28 virtual void ProcessMessage(const buzz::XmlElement* message) OVERRIDE; | 28 virtual void ProcessMessage(const buzz::XmlElement* message) OVERRIDE; |
29 virtual buzz::XmlElement* GetNextMessage() OVERRIDE; | 29 virtual buzz::XmlElement* GetNextMessage() OVERRIDE; |
30 virtual ChannelAuthenticator* CreateChannelAuthenticator() const OVERRIDE; | 30 virtual ChannelAuthenticator* CreateChannelAuthenticator() const OVERRIDE; |
31 | 31 |
32 private: | 32 private: |
33 std::string local_jid_; | 33 std::string local_jid_; |
34 std::string shared_secret_; | 34 std::string shared_secret_; |
35 std::string remote_cert_; | 35 std::string remote_cert_; |
36 State state_; | 36 State state_; |
37 | 37 |
38 DISALLOW_COPY_AND_ASSIGN(V1ClientAuthenticator); | 38 DISALLOW_COPY_AND_ASSIGN(V1ClientAuthenticator); |
39 }; | 39 }; |
40 | 40 |
41 class V1HostAuthenticator : public Authenticator { | 41 class V1HostAuthenticator : public Authenticator { |
42 public: | 42 public: |
43 explicit V1HostAuthenticator(const std::string& local_cert, | 43 // Doesn't take ownership of |local_private_key|. |
44 crypto::RSAPrivateKey* local_private_key, | 44 V1HostAuthenticator(const std::string& local_cert, |
45 const std::string& shared_secret, | 45 crypto::RSAPrivateKey* local_private_key, |
46 const std::string& remote_jid); | 46 const std::string& shared_secret, |
| 47 const std::string& remote_jid); |
47 virtual ~V1HostAuthenticator(); | 48 virtual ~V1HostAuthenticator(); |
48 | 49 |
49 // Authenticator interface. | 50 // Authenticator interface. |
50 virtual State state() const OVERRIDE; | 51 virtual State state() const OVERRIDE; |
51 virtual void ProcessMessage(const buzz::XmlElement* message) OVERRIDE; | 52 virtual void ProcessMessage(const buzz::XmlElement* message) OVERRIDE; |
52 virtual buzz::XmlElement* GetNextMessage() OVERRIDE; | 53 virtual buzz::XmlElement* GetNextMessage() OVERRIDE; |
53 virtual ChannelAuthenticator* CreateChannelAuthenticator() const OVERRIDE; | 54 virtual ChannelAuthenticator* CreateChannelAuthenticator() const OVERRIDE; |
54 | 55 |
55 private: | 56 private: |
56 std::string local_cert_; | 57 std::string local_cert_; |
57 crypto::RSAPrivateKey* local_private_key_; | 58 crypto::RSAPrivateKey* local_private_key_; |
58 std::string shared_secret_; | 59 std::string shared_secret_; |
59 std::string remote_jid_; | 60 std::string remote_jid_; |
60 State state_; | 61 State state_; |
61 | 62 |
62 DISALLOW_COPY_AND_ASSIGN(V1HostAuthenticator); | 63 DISALLOW_COPY_AND_ASSIGN(V1HostAuthenticator); |
63 }; | 64 }; |
64 | 65 |
65 class V1HostAuthenticatorFactory : public AuthenticatorFactory { | 66 class V1HostAuthenticatorFactory : public AuthenticatorFactory { |
66 public: | 67 public: |
67 // Doesn't take ownership of |local_private_key|. | 68 // Doesn't take ownership of |local_private_key|. |
68 V1HostAuthenticatorFactory(const std::string& local_cert, | 69 V1HostAuthenticatorFactory(const std::string& local_cert, |
69 crypto::RSAPrivateKey* local_private_key, | 70 crypto::RSAPrivateKey* local_private_key, |
70 const std::string& shared_secret); | 71 const std::string& shared_secret); |
71 virtual ~V1HostAuthenticatorFactory(); | 72 virtual ~V1HostAuthenticatorFactory(); |
72 | 73 |
73 // AuthenticatorFactory interface. | 74 // AuthenticatorFactory interface. |
74 virtual Authenticator* CreateAuthenticator( | 75 virtual Authenticator* CreateAuthenticator( |
75 const std::string& remote_jid, | 76 const std::string& remote_jid, |
76 const buzz::XmlElement* first_message) OVERRIDE; | 77 const buzz::XmlElement* first_message) OVERRIDE; |
77 | 78 |
78 private: | 79 private: |
79 std::string local_cert_; | 80 std::string local_cert_; |
80 scoped_ptr<crypto::RSAPrivateKey> local_private_key_; | 81 scoped_ptr<crypto::RSAPrivateKey> local_private_key_; |
81 std::string shared_secret_; | 82 std::string shared_secret_; |
82 | 83 |
83 DISALLOW_COPY_AND_ASSIGN(V1HostAuthenticatorFactory); | 84 DISALLOW_COPY_AND_ASSIGN(V1HostAuthenticatorFactory); |
84 }; | 85 }; |
85 | 86 |
86 } // namespace protocol | 87 } // namespace protocol |
87 } // namespace remoting | 88 } // namespace remoting |
88 | 89 |
89 #endif // REMOTING_PROTOCOL_V1_AUTHENTICATOR_H_ | 90 #endif // REMOTING_PROTOCOL_V1_AUTHENTICATOR_H_ |
OLD | NEW |