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.
5 #include "remoting/protocol/it2me_host_authenticator_factory.h"
7 #include "base/logging.h"
8 #include "remoting/base/rsa_key_pair.h"
9 #include "remoting/protocol/negotiating_host_authenticator.h"
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
),
20 shared_secret_(shared_secret
) {
23 It2MeHostAuthenticatorFactory::~It2MeHostAuthenticatorFactory() {
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
,
35 } // namespace protocol
36 } // namespace remoting