put generated secmod keys in separate dir

This commit is contained in:
Florian Dold 2021-07-30 18:12:28 +02:00
parent e7a9a2911c
commit 2bdc2f61c5
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B
2 changed files with 7 additions and 7 deletions

View File

@ -8,7 +8,7 @@
OVERLAP_DURATION = 5m
# Where do we store the private keys.
KEY_DIR = ${TALER_DATA_HOME}/exchange-secmod-eddsa/
KEY_DIR = ${TALER_DATA_HOME}/exchange-secmod-eddsa/keys
# Where does the helper listen for requests?
UNIXPATH = $TALER_RUNTIME_DIR/exchange-secmod-eddsa/server.sock
@ -16,8 +16,8 @@ UNIXPATH = $TALER_RUNTIME_DIR/exchange-secmod-eddsa/server.sock
# Directory for clients.
CLIENT_DIR = $TALER_RUNTIME_DIR/exchange-secmod-eddsa/clients
# Where should the security module store it's private key?
SM_PRIV_KEY = ${TALER_DATA_HOME}/exchange-secmod-eddsa/private-key
# Where should the security module store its own private key?
SM_PRIV_KEY = ${TALER_DATA_HOME}/exchange-secmod-eddsa/secmod-private-key
# For how long into the future do we pre-generate keys?
LOOKAHEAD_SIGN = 1 year

View File

@ -7,8 +7,8 @@
# must be longer than this value.
OVERLAP_DURATION = 5 m
# Where do we store the private keys.
KEY_DIR = ${TALER_DATA_HOME}/exchange-secmod-rsa/
# Where do we store the generated private keys.
KEY_DIR = ${TALER_DATA_HOME}/exchange-secmod-rsa/keys
# Where does the helper listen for requests?
UNIXPATH = $TALER_RUNTIME_DIR/exchange-secmod-rsa/server.sock
@ -16,8 +16,8 @@ UNIXPATH = $TALER_RUNTIME_DIR/exchange-secmod-rsa/server.sock
# Directory for clients.
CLIENT_DIR = $TALER_RUNTIME_DIR/exchange-secmod-rsa/clients
# Where should the security module store it's private key?
SM_PRIV_KEY = ${TALER_DATA_HOME}/exchange-secmod-rsa/private-key
# Where should the security module store its own private key?
SM_PRIV_KEY = ${TALER_DATA_HOME}/exchange-secmod-rsa/secmod-private-key
# For how long into the future do we pre-generate keys?
LOOKAHEAD_SIGN = 1 year