Skip to content

Instantly share code, notes, and snippets.

@Rurik
Last active October 10, 2024 16:42
Show Gist options
  • Save Rurik/35a185b09149fe9b4e51312f731c0783 to your computer and use it in GitHub Desktop.
Save Rurik/35a185b09149fe9b4e51312f731c0783 to your computer and use it in GitHub Desktop.
multibyte_xor - Python3
def multibyte_xor(data, key): # Python 3
from itertools import cycle
return ''.join(chr(x ^ y) for x, y in zip(data, cycle(key)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment