You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/tests/fido_tests/u2f-tests-hid
Pavol Rusnak 8f1d33d5f9
build(core,legacy): remove gcc, use cc instead of gcc
2 years ago
..
.gitignore tests: add fido-tests/u2f-tests-hid 5 years ago
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. 4 years ago
LICENSE ci: enable editorconfig checks, fix whitespace issues 4 years ago
Makefile build(core,legacy): remove gcc, use cc instead of gcc 2 years ago
README tests: add fido-tests/u2f-tests-hid 5 years ago
U2FTest.cc tests/fido2-tests: cleanup u2f-tests-hid 5 years ago
UPSTREAM tests: add fido-tests/u2f-tests-hid 5 years ago
dev.cc feat(common): Add INFO button to DebugLinkDecision. 2 years ago
dsa_sig.c tests: add fido-tests/u2f-tests-hid 5 years ago
dsa_sig.h tests: add fido-tests/u2f-tests-hid 5 years ago
hash-internal.h tests: add fido-tests/u2f-tests-hid 5 years ago
hidapi-udp.c tests: update u2ftest to auto-confirm when needed 5 years ago
hidapi.h tests: add fido-tests/u2f-tests-hid 5 years ago
p256.c tests: add fido-tests/u2f-tests-hid 5 years ago
p256.h tests: add fido-tests/u2f-tests-hid 5 years ago
p256_ec.c tests: add fido-tests/u2f-tests-hid 5 years ago
p256_ecdsa.c tests: add fido-tests/u2f-tests-hid 5 years ago
p256_ecdsa.h tests: add fido-tests/u2f-tests-hid 5 years ago
sha256.c tests: add fido-tests/u2f-tests-hid 5 years ago
sha256.h tests: add fido-tests/u2f-tests-hid 5 years ago
u2f.h tests: add fido-tests/u2f-tests-hid 5 years ago
u2f_hid.h tests: add fido-tests/u2f-tests-hid 5 years ago
u2f_util.cc tests/fido2-tests: cleanup u2f-tests-hid 5 years ago
u2f_util.h tests/fido2-tests: cleanup u2f-tests-hid 5 years ago

README

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.