def decrypt_config_item_printable()

in asyncrat/asyncrat.py [0:0]


    def decrypt_config_item_printable(self, key: bytes, data: list[bytes], index: int) -> str:
        result = "".join(
            filter(
                lambda x: x in string.printable,
                self.decrypt(key, base64.b64decode(data[index][1:])),
            )
        )
        return result