Gets rid of cli_pk file

The public key can be generated from the private, and the latter has to be loaded anyway, so there's no point storing both
This commit is contained in:
Sergi Delgado Segura
2020-04-10 13:31:57 +02:00
parent 2242e780dd
commit 9afd5b1970
2 changed files with 29 additions and 36 deletions

View File

@@ -10,7 +10,6 @@ DEFAULT_CONF = {
"API_PORT": {"value": 9814, "type": int},
"LOG_FILE": {"value": "teos_cli.log", "type": str, "path": True},
"APPOINTMENTS_FOLDER_NAME": {"value": "appointment_receipts", "type": str, "path": True},
"CLI_PUBLIC_KEY": {"value": "cli_pk.der", "type": str, "path": True},
"CLI_PRIVATE_KEY": {"value": "cli_sk.der", "type": str, "path": True},
"TEOS_PUBLIC_KEY": {"value": "teos_pk.der", "type": str, "path": True},
}