crypto: implement simple certificate-key pair for easier management

This commit is contained in:
Jens Langhammer
2020-03-03 23:35:25 +01:00
parent f6c322be27
commit 8df55f22aa
13 changed files with 416 additions and 0 deletions

10
passbook/crypto/apps.py Normal file
View File

@ -0,0 +1,10 @@
"""passbook crypto app config"""
from django.apps import AppConfig
class PassbookCryptoConfig(AppConfig):
"""passbook crypto app config"""
name = "passbook.crypto"
label = "passbook_crypto"
verbose_name = "passbook Crypto"