Enable _api_features.json to block APIs from service worker contexts.
[chromium-blink-merge.git] / remoting / protocol / it2me_host_authenticator_factory.cc
blob20a1ada421b3eeef39e2f942e54e9883e75dc438
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, NULL);
34 } // namespace protocol
35 } // namespace remoting