Implement GoogleURLTrackerFactory and GoogleURLTrackerClient on iOS
[chromium-blink-merge.git] / remoting / protocol / it2me_host_authenticator_factory.cc
blobd20f2e8a5769ca69be530d15ca2bc26eff647a03
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"
11 namespace remoting {
12 namespace protocol {
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) {
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,
32 nullptr);
35 } // namespace protocol
36 } // namespace remoting