9 lines
425 B
Python
9 lines
425 B
Python
ERROR_NO_SECRET_FOUND = "Error: No secret available with the given name."
|
|
ERROR_UNKNOWN_CLIENT_OR_SECRET = "Error: Invalid client or secret name."
|
|
ERROR_NO_COMMAND_RECEIVED = "Error: No command was received from the client."
|
|
ERROR_SOURCE_IP_NOT_ALLOWED = (
|
|
"Error: Client not authorized to connect from the given host."
|
|
)
|
|
ERROR_UNKNOWN_COMMAND = "Error: The given command was not understood."
|
|
SERVER_KEY_TYPE = "ed25519"
|