2021-01-17 20:07:55 +01:00
|
|
|
[taler-exchange-secmod-eddsa]
|
2020-12-08 19:55:19 +01:00
|
|
|
|
|
|
|
# How long should generated coins overlap in their validity
|
|
|
|
# periods. Should be long enough to avoid problems with
|
|
|
|
# wallets picking one key and then due to network latency
|
|
|
|
# another key being valid. The DURATION_WITHDRAW period
|
|
|
|
# must be longer than this value.
|
|
|
|
OVERLAP_DURATION = 5m
|
|
|
|
|
|
|
|
# Where do we store the private keys.
|
2021-07-30 18:12:28 +02:00
|
|
|
KEY_DIR = ${TALER_DATA_HOME}/exchange-secmod-eddsa/keys
|
2020-12-08 19:55:19 +01:00
|
|
|
|
|
|
|
# Where does the helper listen for requests?
|
2021-07-29 18:31:48 +02:00
|
|
|
UNIXPATH = $TALER_RUNTIME_DIR/exchange-secmod-eddsa/server.sock
|
2020-12-11 00:03:58 +01:00
|
|
|
|
2021-07-29 13:04:55 +02:00
|
|
|
# Directory for clients.
|
2021-07-29 18:31:48 +02:00
|
|
|
CLIENT_DIR = $TALER_RUNTIME_DIR/exchange-secmod-eddsa/clients
|
2021-07-29 13:04:55 +02:00
|
|
|
|
2021-07-30 18:12:28 +02:00
|
|
|
# Where should the security module store its own private key?
|
|
|
|
SM_PRIV_KEY = ${TALER_DATA_HOME}/exchange-secmod-eddsa/secmod-private-key
|
2020-12-11 00:03:58 +01:00
|
|
|
|
|
|
|
# For how long into the future do we pre-generate keys?
|
|
|
|
LOOKAHEAD_SIGN = 1 year
|
2020-12-11 00:04:30 +01:00
|
|
|
|
|
|
|
# For how long are signing keys valid?
|
2020-12-11 00:05:30 +01:00
|
|
|
DURATION = 12 weeks
|