我知道有一个内置的xor运算符可以在Python中导入。我正在尝试执行xor加密/解密。到目前为止,我有:
def xor_attmpt():
message = raw_input("Enter message to be ciphered: ")
cipher = []
for i in message:
cipher.append(bin(ord(i))[2::])#add the conversion of the letters/characters
#in your message from ascii to binary withoout the 0b in the front to your ciphered message list
cipher = "".join(cipher)
privvyKey = raw_input("Enter the private key: ")
keydecrypt = []
for j in privvyKey:
keydecrypt.append(bin(ord(j))[2::]) #same
keydecrypt = "".join(keydecrypt )#same
print "key is '{0}'" .format(keydecrypt) #substitute values in string
print "encrypted text is '{0}'" .format(cipher)
from operator import xor
for letter in message:
print xor(bool(cipher), bool(keydecrypt))
此:
> for letter in message:
print xor(bool(cipher), bool(keydecrypt))
是我的python开始出错的地方。
The ouput looks like this
Enter message to be ciphered: hello
Enter the private key: \@154>
key is '10111001000000110001110101110100111110'
encrypted text is '11010001100101110110011011001101111'
False
False
False
False
False
我搞砸的是试图将这两个二进制(密钥和加密)进行比较并给出真(1)或假(为0)。然后xor应该通过比较两者得到一个结果1和0的二进制列表。有什么输入吗?
答案 0 :(得分:4)
bool()
构造函数会将任意值转换为True
或False
。由于您在每个案例bool(cipher)
和bool(keydecrypt)
传递非空字符串,因此每个字符串只转换为True
而xor(True,True)
为“False。”
忘记转换为0和1的字符串,您实际需要做的就是调用ord()
后得到的字符代码,然后转换回chr()
的字符。另外,你不需要导入函数,Python有一个功能完善的xor运算符^
。
这样的事情应该有效:
import itertools
print(''.join(chr(ord(k)^ord(c)) for c,k in zip(cipher,itertools.cycle(keydecrypt))))
答案 1 :(得分:1)
你犯了一些错误:
cipher
和keydecrypt
不是二进制,它们是包含0和1个字符的字符串。xor
函数,您已经拥有xor运算符^
for
应该做什么。以下是有关如何改进代码的示例:
import itertools
import binascii
encrypted = ''
for m, k in itertools.izip(message, itertools.cycle(key)):
encrypted += chr(ord(m) ^ ord(k))
print binascii.hexlify(encrypted)
如果key
小于message
,这也会有用。