Logo

Programming-Idioms

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

Idiom #307 XOR encrypt/decrypt string

Create a function that XOR encrypts/decrypts a string

def xor_string(str, key)
  ords = key.chars.map(&:ord).cycle
  str.chars.zip(ords).inject(""){|res, (c,o)| res << (c.ord ^ o) }
end
sysutils
encrypted := xorstring(key, original);

New implementation...
< >
anonymous