Moves cli conf options to __init__.py so it can be run standalone

This commit is contained in:
Sergi Delgado Segura
2019-07-10 12:30:06 +01:00
parent 88ae640417
commit d1c5b3dd6a
3 changed files with 11 additions and 4 deletions

View File

@@ -1,2 +1,10 @@
# PISA-SERVER
DEFAULT_PISA_API_SERVER = 'localhost'
DEFAULT_PISA_API_PORT = 9814
DEFAULT_PISA_API_PORT = 9814
# PISA-CLI
CLIENT_LOG_FILE = 'pisa.log'
# CRYPTO
SUPPORTED_HASH_FUNCTIONS = ["SHA256"]
SUPPORTED_CIPHERS = ["AES-GCM-128"]