| OLD | NEW |
| 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" |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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<TokenValidatorFactory> token_validator_factory_; | 70 scoped_ptr<TokenValidatorFactory> token_validator_factory_; |
| 71 | 71 |
| 72 // Used only for pairing host authenticators. | 72 // Used only for pairing host authenticators. |
| 73 scoped_refptr<PairingRegistry> pairing_registry_; | 73 scoped_refptr<PairingRegistry> pairing_registry_; |
| 74 | 74 |
| 75 DISALLOW_COPY_AND_ASSIGN(Me2MeHostAuthenticatorFactory); | 75 DISALLOW_COPY_AND_ASSIGN(Me2MeHostAuthenticatorFactory); |
| 76 }; | 76 }; |
| 77 | 77 |
| 78 } // namespace protocol | 78 } // namespace protocol |
| 79 } // namespace remoting | 79 } // namespace remoting |
| 80 | 80 |
| 81 #endif // REMOTING_PROTOCOL_ME2ME_HOST_AUTHENTICATOR_FACTORY_H_ | 81 #endif // REMOTING_PROTOCOL_ME2ME_HOST_AUTHENTICATOR_FACTORY_H_ |
| OLD | NEW |