Skip to content

Instantly share code, notes, and snippets.

@m---

m---/crypt1.py Secret

Created September 8, 2015 15:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save m---/13b6ba2b7e95e1475683 to your computer and use it in GitHub Desktop.
Save m---/13b6ba2b7e95e1475683 to your computer and use it in GitHub Desktop.
a = '36 36 2a 64 4b 4b 4a 21 1e 4b 1f 20 1f 21 4d 4b 1b 1d 19 4f 21 4c 1d 4a 4e 1c 4c 1b 22 4f 22 22 1b 21 4c 20 1d 4f 1f 4c 4a 19 22 1a 66'
ret = ''
for c in a.split(' '):
ret += chr(int(c, 16) + 23)
print ret
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment