Added new test signature key for domain names

This commit is contained in:
Alexandre Paillier
2023-02-28 14:30:39 +01:00
parent e3a6db7c93
commit 0336f3fcf0
2 changed files with 9 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ from enum import Enum, auto
# Example: for an entry in the Enum named DEV, its PEM file must be at keychain/dev.pem
class Key(Enum):
CAL = auto()
DOMAIN_NAME = auto()
_keys: dict[Key, SigningKey] = dict()