class Encrypter: def encrypt(self, v): raise NotImplementedError() def decrypt(self, v): raise NotImplementedError()