-
Notifications
You must be signed in to change notification settings - Fork 4
/
cfssl-pkcs11-ca.example
42 lines (32 loc) · 987 Bytes
/
cfssl-pkcs11-ca.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
################################
# CA Settings #
################################
# The CA Certificate belonging to the private key on the HSM
CACERT=cacert.pem
# Directory to place signed certs and CSRs.
CERTDIR=certs/
# CFSSL configuration
CONFIG=ca-config.json
# CFSSL profile
PROFILE=server
# HSM user PIN to unlock the private key
PIN=123456
################################
# PKCS11 Module overrides
# Uncomment and edit if your
# paths aren't found by the
# primary script.
################################
# SPYMODULE=/usr/local/Cellar/opensc/0.14.0_1/lib/pkcs11/pkcs11-spy.so
# MODULE=/usr/local/Cellar/opensc/0.14.0_1/lib/pkcs11/opensc-pkcs11.so
################################
# HSM settings - uncomment one #
################################
# Yubikey NEO settings
SLOT="Yubico Yubikey NEO OTP+CCID"
# or "Yubico Yubikey NEO CCID" if OTP is diabled
LABEL="SIGN key"
# SoftHSM on Linux64
# MODULE=/usr/lib64/softhsm/libsofthsm.so
# SLOT="SoftHSM"
# LABEL="My HSM"