cic-cli/cic/crypt/base.py

9 lines
148 B
Python
Raw Normal View History

2022-02-21 06:34:25 +01:00
class Encrypter:
def encrypt(self, v):
raise NotImplementedError()
def decrypt(self, v):
raise NotImplementedError()