clicada/clicada/crypt/base.py

9 lines
148 B
Python
Raw Permalink Normal View History

2022-01-21 11:59:27 +01:00
class Encrypter:
def encrypt(self, v):
raise NotImplementedError()
def decrypt(self, v):
raise NotImplementedError()