mirror of
https://github.com/KyleBanks/XOREncryption.git
synced 2023-08-10 21:13:15 +03:00
32 lines
554 B
Python
32 lines
554 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
"""
|
|
XOREncryption.py
|
|
|
|
Created by Kyle Banks on 2013-10-06.
|
|
"""
|
|
|
|
def encryptDecrypt(input):
|
|
key = ['K', 'C', 'Q'] #Can be any chars, and any size array
|
|
output = []
|
|
|
|
for i in range(len(input)):
|
|
xor_num = ord(input[i]) ^ ord(key[i % len(key)])
|
|
output.append(chr(xor_num))
|
|
|
|
return ''.join(output)
|
|
|
|
|
|
def main():
|
|
encrypted = encryptDecrypt("kylewbanks.com");
|
|
print("Encrypted:"+encrypted);
|
|
|
|
decrypted = encryptDecrypt(encrypted);
|
|
print("Decrypted:"+decrypted);
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|
|
|