1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-19 22:18:13 +00:00
trezor-firmware/core/src/apps/webauthn
2019-12-03 14:48:59 +01:00
..
metadata core/webauthn: update metadata 2019-11-16 10:53:10 +00:00
res common/defs: add mojeid.cz definition to webauthn 2019-11-01 12:54:28 +00:00
__init__.py core/usb: reorder endpoints 2019-11-13 13:21:39 +01:00
add_resident_credential.py core: create top-level storage module 2019-10-31 16:21:56 +01:00
confirm.py core/webauthn: Specify the exception raised by res.load(). 2019-11-26 15:44:05 +01:00
credential.py core/webauthn: unify signatures of Credential.from_bytes and friends 2019-11-06 13:56:52 +01:00
fido2.py core/webauthn: Reply with ERR_CHANNEL_BUSY once a U2F request has been declined to stop Chrome from polling. 2019-12-03 14:48:59 +01:00
knownapps.py webauthn: Disable signature counter in FIDO2 for dropbox.com, gandi.net, secure.login.gov. 2019-11-21 13:59:45 +01:00
list_resident_credentials.py core: create top-level storage module 2019-10-31 16:21:56 +01:00
README.md core/webauthn: Add README.md. 2019-09-12 12:04:01 +02:00
remove_resident_credential.py core/webauthn: rename storage.webauthn to storage.resident_credentials 2019-11-08 12:47:54 +01:00
resident_credentials.py core/webauthn: rename storage.webauthn to storage.resident_credentials 2019-11-08 12:47:54 +01:00

WebAuthn

MAINTAINER = Andrew R. Kozlik andrew.kozlik@satoshilabs.com

AUTHOR = Andrew R. Kozlik andrew.kozlik@satoshilabs.com

REVIEWER = Jan Pochyla jan.pochyla@satoshilabs.com, Ondrej Vejpustek ondrej.vejpustek@satoshilabs.com


This app implements WebAuthn authenticator functionality in accordance with the following specifications:

Supported features and algorithms

This implementation supports client-side credential storage on the device and user verification by PIN entry, making the Trezor T a first-factor roaming authenticator usable for passwordless login.

User verification

The device is capable of verifying the user within itself by direct PIN entry via the touchscreen. Client PIN is not supported, because it is less secure than direct PIN verification. The authenticatorClientPIN command is therefore implemented only to the extent required by the hmac-secret extension. Namely, only the getKeyAgreement subcommand is supported.

Credential selection

Credential selection is supported directly on the device. The authenticatorGetNextAssertion command is therefore not implemented.

Public key credential algorithms

  • COSE algorithm ES256 (-7): ECDSA using the NIST P-256 curve with SHA-256.

Extenstions

  • hmac-secret extension.

Attestation types

  • Self attestation.