Skip to content

Instantly share code, notes, and snippets.

@scumdestroy
Created October 23, 2020 08:48
Show Gist options
  • Save scumdestroy/60b14c555f2a2c9a9c487a50e9dd309d to your computer and use it in GitHub Desktop.
Save scumdestroy/60b14c555f2a2c9a9c487a50e9dd309d to your computer and use it in GitHub Desktop.
encrypted = "encrypted-string-here"
for i in range(0,255):
print("".join([chr(ord(e) ^ i) for e in encrypted]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment