2021-02-19 00:17:40 +01:00
|
|
|
# Copyright (C) 2021 Freie Universität Berlin
|
|
|
|
#
|
|
|
|
# This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
# General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
# directory for more details.
|
|
|
|
|
2021-12-22 11:33:10 +01:00
|
|
|
menuconfig MODULE_FIDO2_CTAP_TRANSPORT_HID
|
|
|
|
bool "FIDO2 CTAP transport HID"
|
|
|
|
depends on MODULE_FIDO2_CTAP_TRANSPORT
|
|
|
|
depends on TEST_KCONFIG
|
|
|
|
select MODULE_ISRPIPE
|
|
|
|
select MODULE_USBUS_HID
|
2021-02-19 00:17:40 +01:00
|
|
|
help
|
|
|
|
Configure a FIDO2 CTAP authenticator via KConfig.
|
|
|
|
|
2021-12-22 11:33:10 +01:00
|
|
|
if MODULE_FIDO2_CTAP_TRANSPORT_HID
|
2021-02-19 00:17:40 +01:00
|
|
|
|
|
|
|
config FIDO2_CTAP_TRANSPORT_HID_TRANSACTION_TIMEOUT
|
|
|
|
int "CTAPHID Transaction timeout in milliseconds"
|
|
|
|
default 500
|
|
|
|
help
|
|
|
|
A CTAPHID transaction has to be completed within a specified period
|
|
|
|
of time to prevent the authenticator from being locked by a
|
|
|
|
stalling application.
|
|
|
|
|
2021-12-22 11:33:10 +01:00
|
|
|
endif # MODULE_FIDO2_CTAP_TRANSPORT_HID
|