(self, filename: str, xor_key: str)
| 9 | __slots__ = ("key", "_key_length", "_fname", "_ciphertext", "_plaintext") |
| 10 | |
| 11 | def __init__(self, filename: str, xor_key: str) -> None: |
| 12 | self.key = str(xor_key) |
| 13 | self._key_length = len(self.key) |
| 14 | self._fname = filename |
| 15 | self._ciphertext = "" |
| 16 | self._plaintext = b"" |
| 17 | |
| 18 | def _xor_crypt(self) -> None: |
| 19 | i = 0 |
nothing calls this directly
no outgoing calls
no test coverage detected