使用XOR进行Python 3.6文件解密

时间:2017-03-26 04:56:43

标签: python python-3.x encryption xor

我已经编写了一些在加密文件方面效果很好的代码,但是我不知道如何解密它。有人可以向我解释如何解密加密文件吗?感谢。

代码:

from itertools import cycle

def xore(data, key):
    return bytes(a ^ b for a, b in zip(data, cycle(key)))

with open('C:\\Users\\saeed\\Desktop\\k.png', 'rb') as encry, open('C:\\Users\\saeed\\Desktop\\k_enc.png', 'wb') as decry:
    decry.write(xore(encry.read(), b'anykey'))

2 个答案:

答案 0 :(得分:4)

要解密xor加密,您只需要使用相同的密钥再次对其进行加密:

>>> from io import BytesIO
>>> plain = b'This is a test'
>>> with BytesIO(plain) as f:
...     encrypted = xore(f.read(), b'anykey')
>>> print(encrypted)
b'5\x06\x10\x18E\x10\x12N\x18K\x11\x1c\x12\x1a'
>>> with BytesIO(encrypted) as f:
...     decrypted = xore(f.read(), b'anykey')
>>> print(decrypted)
b'This is a test'

答案 1 :(得分:2)

xor 操作是它自己的反转。如果你加密"它是第二次使用原始密钥,它将恢复明文。