1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-18 13:59:17 +00:00
trezor-firmware/tests/fido_tests/u2f-tests-hid
Pavol Rusnak 8f1d33d5f9 build(core,legacy): remove gcc, use cc instead of gcc
for firmware builds we still use arm-none-eabi-gcc via $(PREFIX)gcc

[no changelog]
2022-04-27 15:48:14 +02:00
..
.gitignore
dev.cc feat(common): Add INFO button to DebugLinkDecision. 2022-01-27 13:15:04 +01:00
dsa_sig.c
dsa_sig.h
hash-internal.h
hidapi-udp.c tests: update u2ftest to auto-confirm when needed 2019-09-14 14:36:33 +02:00
hidapi.h
HIDTest.cc tests/u2f-hid: Disable strict timing checks in HIDTest and increase receive timeout to avoid failures in CI when emulator is slow to respond. 2020-04-06 09:53:42 +02:00
LICENSE ci: enable editorconfig checks, fix whitespace issues 2020-11-11 14:43:50 +01:00
Makefile build(core,legacy): remove gcc, use cc instead of gcc 2022-04-27 15:48:14 +02:00
p256_ec.c
p256_ecdsa.c
p256_ecdsa.h
p256.c
p256.h
README
sha256.c
sha256.h
u2f_hid.h
u2f_util.cc tests/fido2-tests: cleanup u2f-tests-hid 2019-09-13 12:47:28 +02:00
u2f_util.h tests/fido2-tests: cleanup u2f-tests-hid 2019-09-13 12:47:28 +02:00
u2f.h
U2FTest.cc tests/fido2-tests: cleanup u2f-tests-hid 2019-09-13 12:47:28 +02:00
UPSTREAM

WHAT:
A couple of self-contained u2f HID device conformance tests:
HIDTest to check compliance at the usb HID communication layer.
U2FTest to check compliance at the application layer.

DEPENDENCIES:
git clone https://github.com/signal11/hidapi
git clone -b lollipop-release https://android.googlesource.com/platform/system/core

linux: sudo apt-get install libudev-dev

BUILD:
linux, mac: make

windows: nmake -f Makefile.win
  - if you have an old vc compiler, consider adding
    http://msinttypes.googlecode.com/svn/trunk/stdint.h
    or similar to your vc include directory.

RUN:
./list
  to find path of device to test (e.g. /dev/hidraw3)

./HIDTest $PATH [args]?
  to test low level communications with device.
  On windows?
  - Make sure to keep the quotes around the path.
  - Try https://github.com/adoxa/ansicon to get ANSI colors.
  On linux?
  - Make sure path is rw for your uid. Typically, a udev rule that adds
    rw for group plugdev goes a long way.

./U2FTest $PATH [args]?
  to test u2f application layer functionality of device.

Additional commandline arguments:
Add -a to continue execution after an error.
Add -p to pause after each error.
Add -v and -V to get more verbose output, down to the usb frames with -V.
Add -b to U2FTest in case fob under test is of the insert / remove
  class and does not have a user-presence button.