SYMBOL INDEX (29 symbols across 1 files) FILE: shellcrypt.py function show_banner (line 44) | def show_banner(): class Log (line 60) | class Log(object): method __init__ (line 62) | def __init__(self): method logSuccess (line 66) | def logSuccess(msg:str): method logInfo (line 75) | def logInfo(msg:str): method logDebug (line 84) | def logDebug(msg:str): method logError (line 94) | def logError(msg:str): class ShellcodeFormatter (line 104) | class ShellcodeFormatter(object): method __init__ (line 106) | def __init__(self): method __generate_array_contents (line 122) | def __generate_array_contents(self, input_bytes:bytearray, string_form... method __output_c (line 148) | def __output_c(self, arrays:dict) -> str: method __output_rust (line 163) | def __output_rust(self, arrays:dict) -> str: method __output_csharp (line 178) | def __output_csharp(self, arrays:dict) -> str: method __output_nim (line 192) | def __output_nim(self, arrays:dict) -> str: method __output_go (line 205) | def __output_go(self, arrays:dict) -> str: method __output_py (line 218) | def __output_py(self, arrays:dict) -> str: method __output_ps1 (line 232) | def __output_ps1(self, arrays:dict) -> str: method __output_vba (line 246) | def __output_vba(self, arrays:dict) -> str: method __output_vbscript (line 275) | def __output_vbscript(self, arrays:dict) -> str: method __output_raw (line 289) | def __output_raw(self, arrays:dict) -> str: method generate (line 297) | def generate(self, output_format:str, arrays:dict) -> str: class Encrypt (line 306) | class Encrypt: method __init__ (line 308) | def __init__(self): method encrypt (line 319) | def encrypt(self, cipher:str, plaintext:bytearray, key:bytearray, nonc... method __xor (line 336) | def __xor(self, plaintext:bytearray) -> bytearray: method __aes_128 (line 345) | def __aes_128(self, plaintext:bytearray) -> bytearray: method __rc4 (line 354) | def __rc4(self, plaintext:bytearray) -> bytearray: method __chacha20 (line 362) | def __chacha20(self, plaintext:bytearray) -> bytearray: method __salsa20 (line 370) | def __salsa20(self, plaintext:bytearray) -> bytearray: