Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / chromeos / dbus / fake_easy_unlock_client.cc
1 // Copyright 2014 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 "chromeos/dbus/fake_easy_unlock_client.h"
6
7 namespace chromeos {
8
9 FakeEasyUnlockClient::FakeEasyUnlockClient() {}
10
11 FakeEasyUnlockClient::~FakeEasyUnlockClient() {}
12
13 void FakeEasyUnlockClient::Init(dbus::Bus* bus) {}
14
15 void FakeEasyUnlockClient::GenerateEcP256KeyPair(
16     const KeyPairCallback& callback) {
17 }
18
19 void FakeEasyUnlockClient::PerformECDHKeyAgreement(
20     const std::string& private_key,
21     const std::string& public_key,
22     const DataCallback& callback) {
23 }
24
25 void FakeEasyUnlockClient::CreateSecureMessage(
26     const std::string& payload,
27     const std::string& secret_key,
28     const std::string& associated_data,
29     const std::string& public_metadata,
30     const std::string& verification_key_id,
31     const std::string& encryption_type,
32     const std::string& signature_type,
33     const DataCallback& callback) {
34 }
35
36 void FakeEasyUnlockClient::UnwrapSecureMessage(
37     const std::string& message,
38     const std::string& secret_key,
39     const std::string& associated_data,
40     const std::string& encryption_type,
41     const std::string& signature_type,
42     const DataCallback& callback) {
43 }
44
45 }  // namespace chromeos