├── .gitignore ├── Makefile ├── ble.go ├── ble_darwin.go ├── ble_linux.go ├── const.go ├── fido20.go ├── fido20_suite_test.go ├── main.go ├── option_darwin.go ├── option_linux.go ├── readme.md ├── types.go └── ui.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/** -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laszlohordos/fido20/HEAD/Makefile -------------------------------------------------------------------------------- /ble.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laszlohordos/fido20/HEAD/ble.go -------------------------------------------------------------------------------- /ble_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laszlohordos/fido20/HEAD/ble_darwin.go -------------------------------------------------------------------------------- /ble_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laszlohordos/fido20/HEAD/ble_linux.go -------------------------------------------------------------------------------- /const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laszlohordos/fido20/HEAD/const.go -------------------------------------------------------------------------------- /fido20.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laszlohordos/fido20/HEAD/fido20.go -------------------------------------------------------------------------------- /fido20_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laszlohordos/fido20/HEAD/fido20_suite_test.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laszlohordos/fido20/HEAD/main.go -------------------------------------------------------------------------------- /option_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laszlohordos/fido20/HEAD/option_darwin.go -------------------------------------------------------------------------------- /option_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laszlohordos/fido20/HEAD/option_linux.go -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laszlohordos/fido20/HEAD/readme.md -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laszlohordos/fido20/HEAD/types.go -------------------------------------------------------------------------------- /ui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laszlohordos/fido20/HEAD/ui.go --------------------------------------------------------------------------------