1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-18 05:28:40 +00:00
trezor-firmware/tests/fido_tests/u2f-tests-hid/dev.cc

47 lines
1.1 KiB
C++
Raw Normal View History

2019-09-12 09:46:35 +00:00
// Copyright Google Inc. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
// Thin shim to allow abstracting away from hid_* calls to
// a set or read/write pipes w/ a particular interface.
#include <assert.h>
#include <endian.h>
#include <fcntl.h>
#include <string.h>
#include <string>
#include "u2f_util.h"
bool DEV_opened(struct U2Fob* device) {
return device->dev != NULL;
2019-09-12 09:46:35 +00:00
}
void DEV_close(struct U2Fob* device) {
if (device->dev) {
hid_close(device->dev);
device->dev = NULL;
}
}
void DEV_open_path(struct U2Fob* device) {
device->dev = hid_open_path(device->path);
2019-09-12 09:46:35 +00:00
}
int DEV_write(struct U2Fob* device, const uint8_t* src, size_t n) {
assert(n == 65);
return hid_write(device->dev, src, n);
2019-09-12 09:46:35 +00:00
}
int DEV_read_timeout(struct U2Fob* device, uint8_t* dst, size_t n,
int timeout) {
assert(n == 64);
return hid_read_timeout(device->dev, dst, n, timeout);
2019-09-12 09:46:35 +00:00
}
int DEV_touch(struct U2Fob* device) {
return 0;
2019-09-12 09:46:35 +00:00
}