31 lines
1.1 KiB
TOML
31 lines
1.1 KiB
TOML
# SPDX-FileCopyrightText: 2021 Heiko Schaefer <heiko@schaefer.name>
|
|
# SPDX-License-Identifier: MIT OR Apache-2.0
|
|
#
|
|
# This configuration specifies which cards the test suite is performed on.
|
|
#
|
|
# NOTE: the test suite is **DESTRUCTIVE**.
|
|
# It will **OVERWRITE** all data on test cards!
|
|
#
|
|
# The test suite reads the configuration from 'config/test-cards.toml'.
|
|
# You should configure your set of test-card identifiers and store your
|
|
# configuration in that location.
|
|
#
|
|
# Usually you will want to test cards via the pcsc transport, which talks
|
|
# to smartcards via the standard PCSC lite middleware
|
|
# (https://pcsclite.apdu.fr/).
|
|
#
|
|
# An alternative scdc transport is provided. It talks to smartcards via
|
|
# scdaemon (which is part of the GnuPG system).
|
|
# The scdc transport is not recommended for use by default, it is offered
|
|
# for experimental use only.
|
|
#
|
|
# (However, note that emulated Gnuk can currently only be accessed via scdc)
|
|
|
|
pcsc = [
|
|
"0006:12345678", # Yubikey 5
|
|
"0005:0000A835", # FLOSS Card 3.4
|
|
]
|
|
|
|
scdc = [
|
|
"D276000124010200FFFEF1420A7A0000", # Gnuk emulated
|
|
]
|