Last active
May 23, 2018 19:37
-
-
Save nullableVoidPtr/632583d4e34b4b1bf3b92f5b4f5d0c7d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def decodeScrapeshieldEmail(s): | |
retval = "" | |
key = int(s[:2], 16) | |
for char in [int(s[i:i+2], 16) for i in range(2, len(s), 2)]: | |
retval += chr(char ^ key) | |
return retval | |
#return "".join([chr(c^int(s[:2],2))for c in [int(s[i:i+2],16)for i in range(2,len(s),2))]]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
reverse-engineered from the original javascript.