Return an encrypted string.
(self, string)
| 273 | self.__dm2 = _decode_map_2(major) |
| 274 | |
| 275 | def encode(self, string): |
| 276 | 'Return an encrypted string.' |
| 277 | assert isinstance(string, str) |
| 278 | return _encode(string, self.__em1, self.__em2) |
| 279 | |
| 280 | def decode(self, string): |
| 281 | 'Return a decrypted string.' |
no test coverage detected