Signed Encryption FIXED by leonid

r=map(ord,raw_input())
x=0
for b in r:x^=b
print''.join('%02x'%(x^b)for b in r).join('%x'%x).decode('hex')

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page