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.
5 #include "chromeos/dbus/fake_easy_unlock_client.h"
9 FakeEasyUnlockClient::FakeEasyUnlockClient() {}
11 FakeEasyUnlockClient::~FakeEasyUnlockClient() {}
13 void FakeEasyUnlockClient::Init(dbus::Bus
* bus
) {}
15 void FakeEasyUnlockClient::GenerateEcP256KeyPair(
16 const KeyPairCallback
& callback
) {
19 void FakeEasyUnlockClient::PerformECDHKeyAgreement(
20 const std::string
& private_key
,
21 const std::string
& public_key
,
22 const DataCallback
& callback
) {
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
) {
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
) {
45 } // namespace chromeos