Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Python

Idiom #307 XOR encrypt/decrypt string

Create a function that XOR encrypts/decrypts a string

from itertools import cycle
def xor(data, key):
	return ''.join(chr(ord(x)^ord(y)) for x,y in zip(data, cycle(key)))
sysutils
encrypted := xorstring(key, original);

New implementation...
< >
anonymous