Encrypt and write to file.
(self, string)
| 135 | return _decode(string, self.__dm1, self.__dm2) |
| 136 | |
| 137 | def write(self, string): |
| 138 | 'Encrypt and write to file.' |
| 139 | self.__file.write(_encode(string, self.__em1, self.__em2)) |
| 140 | |
| 141 | def seek(self, offset, whence=0): |
| 142 | 'Seek to virtual positon in file.' |
no test coverage detected