Add test configurations for physical cards in sequoia CI

This commit is contained in:
Heiko Schaefer 2021-12-10 23:19:18 +01:00
parent 40d8639a26
commit 3b089b83dc
No known key found for this signature in database
GPG key ID: 4A849A1904CCBD7D
4 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,7 @@
# SPDX-FileCopyrightText: 2021 Heiko Schaefer <heiko@schaefer.name>
# SPDX-License-Identifier: CC0-1.0
[card.basic-2_1]
backend.pcsc = "0005:00002E32"
config.keygen = ["RSA2k", "RSA3k", "RSA4k"]
config.import = ["data/rsa2k.sec", "data/rsa3k.sec", "data/rsa4k.sec"]

View file

@ -0,0 +1,13 @@
# SPDX-FileCopyrightText: 2021 Heiko Schaefer <heiko@schaefer.name>
# SPDX-License-Identifier: CC0-1.0
[card.nitro_pro1]
backend.pcsc = "0000:00000084"
config.keygen = [
"RSA2k", "RSA3k", "RSA4k",
]
config.import = [
"data/rsa2k.sec",
"data/rsa3k.sec",
"data/rsa4k.sec",
]

View file

@ -0,0 +1,17 @@
# SPDX-FileCopyrightText: 2021 Heiko Schaefer <heiko@schaefer.name>
# SPDX-License-Identifier: CC0-1.0
[card.nitro_pro2]
backend.pcsc = "0005:0000AB6D"
config.keygen = [
"RSA2k", "RSA3k", "RSA4k",
"NIST256", "NIST384", "NIST521",
]
config.import = [
"data/rsa2k.sec",
"data/rsa3k.sec",
"data/rsa4k.sec",
"data/nist256.sec",
"data/nist384.sec",
"data/nist521.sec"
]

View file

@ -0,0 +1,12 @@
# SPDX-FileCopyrightText: 2021 Heiko Schaefer <heiko@schaefer.name>
# SPDX-License-Identifier: CC0-1.0
[card.nitro_start]
backend.pcsc = "FFFE:43233446"
config.keygen = ["RSA2k", "NIST256", "Curve25519"]
config.import = [
"data/rsa2k.sec",
"data/rsa4k.sec",
"data/nist256.sec",
"data/25519.sec",
]