9 lines
148 B
Python
9 lines
148 B
Python
|
class Encrypter:
|
||
|
|
||
|
def encrypt(self, v):
|
||
|
raise NotImplementedError()
|
||
|
|
||
|
|
||
|
def decrypt(self, v):
|
||
|
raise NotImplementedError()
|