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.