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_HOST_CHANNEL_AUTHENTICATOR_H_ |
| 6 #define REMOTING_PROTOCOL_V1_HOST_CHANNEL_AUTHENTICATOR_H_ |
| 7 |
| 8 #include "remoting/protocol/channel_authenticator.h" |
| 9 |
| 10 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/threading/non_thread_safe.h" |
| 12 #include "net/base/completion_callback.h" |
| 13 |
| 14 namespace crypto { |
| 15 class RSAPrivateKey; |
| 16 } // namespace crypto |
| 17 |
| 18 namespace net { |
| 19 class GrowableIOBuffer; |
| 20 class SSLServerSocket; |
| 21 class SSLSocket; |
| 22 } // namespace net |
| 23 |
| 24 namespace remoting { |
| 25 namespace protocol { |
| 26 |
| 27 class V1HostChannelAuthenticator : public ChannelAuthenticator, |
| 28 public base::NonThreadSafe { |
| 29 public: |
| 30 // Caller retains ownership of |local_private_key|. It must exist |
| 31 // while this object exists. |
| 32 V1HostChannelAuthenticator(const std::string& local_cert, |
| 33 crypto::RSAPrivateKey* local_private_key, |
| 34 const std::string& shared_secret); |
| 35 virtual ~V1HostChannelAuthenticator(); |
| 36 |
| 37 // ChannelAuthenticator interface. |
| 38 virtual void SecureAndAuthenticate( |
| 39 net::StreamSocket* socket, const DoneCallback& done_callback) OVERRIDE; |
| 40 |
| 41 private: |
| 42 void OnConnected(int result); |
| 43 void DoAuthRead(); |
| 44 void OnAuthBytesRead(int result); |
| 45 bool HandleAuthBytesRead(int result); |
| 46 bool VerifyAuthBytes(const std::string& received_auth_bytes); |
| 47 |
| 48 std::string local_cert_; |
| 49 crypto::RSAPrivateKey* local_private_key_; |
| 50 std::string shared_secret_; |
| 51 scoped_ptr<net::SSLServerSocket> socket_; |
| 52 DoneCallback done_callback_; |
| 53 |
| 54 scoped_refptr<net::GrowableIOBuffer> auth_read_buf_; |
| 55 |
| 56 net::OldCompletionCallbackImpl<V1HostChannelAuthenticator> |
| 57 connect_callback_; |
| 58 net::OldCompletionCallbackImpl<V1HostChannelAuthenticator> |
| 59 auth_read_callback_; |
| 60 |
| 61 DISALLOW_COPY_AND_ASSIGN(V1HostChannelAuthenticator); |
| 62 }; |
| 63 |
| 64 } // namespace protocol |
| 65 } // namespace remoting |
| 66 |
| 67 #endif // REMOTING_PROTOCOL_V1_HOST_CHANNEL_AUTHENTICATOR_H_ |
OLD | NEW |