blob: 582f2f730f264ae24ecb936f2d737f1ba37138bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H
#define COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H
#include <string>
namespace proximity_auth {
struct RemoteDevice {
public:
std::string name;
std::string public_key;
std::string bluetooth_address;
std::string persistent_symmetric_key;
RemoteDevice();
RemoteDevice(const std::string& name,
const std::string& public_key,
const std::string& bluetooth_address,
const std::string& persistent_symmetric_key);
~RemoteDevice();
};
} // namespace proximity_auth
#endif // COMPONENTS_PROXIMITY_AUTH_REMOTE_DEVICE_H
|