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