MCPcopy Create free account
hub / github.com/Bl4ckM1rror/FUD-UUID-Shellcode / __init__

Method __init__

xor_encryptor.py:11–16  ·  view source on GitHub ↗
(self, filename: str, xor_key: str)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected