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
3 // found in the LICENSE file.
4
5 #include "remoting/protocol/it2me_host_authenticator_factory.h"
6
7 #include "base/logging.h"
8 #include "remoting/base/rsa_key_pair.h"
9 #include "remoting/protocol/negotiating_host_authenticator.h"
10
11 namespace remoting {
12 namespace protocol {
13
It2MeHostAuthenticatorFactory(const std::string & local_cert,scoped_refptr<RsaKeyPair> key_pair,const std::string & shared_secret)14 It2MeHostAuthenticatorFactory::It2MeHostAuthenticatorFactory(
15 const std::string& local_cert,
16 scoped_refptr<RsaKeyPair> key_pair,
17 const std::string& shared_secret)
18 : local_cert_(local_cert),
19 key_pair_(key_pair),
20 shared_secret_(shared_secret) {
21 }
22
~It2MeHostAuthenticatorFactory()23 It2MeHostAuthenticatorFactory::~It2MeHostAuthenticatorFactory() {
24 }
25
CreateAuthenticator(const std::string & local_jid,const std::string & remote_jid,const buzz::XmlElement * first_message)26 scoped_ptr<Authenticator> It2MeHostAuthenticatorFactory::CreateAuthenticator(
27 const std::string& local_jid,
28 const std::string& remote_jid,
29 const buzz::XmlElement* first_message) {
30 return NegotiatingHostAuthenticator::CreateWithSharedSecret(
31 local_cert_, key_pair_, shared_secret_, AuthenticationMethod::NONE, NULL);
32 }
33
34 } // namespace protocol
35 } // namespace remoting
36