Xor加密/解密Python 2.7.5

时间:2013-12-13 13:35:17

标签: python python-2.7 encryption xor

我知道有一个内置的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的二进制列表。有什么输入吗?

2 个答案:

答案 0 :(得分:4)

bool()构造函数会将任意值转换为TrueFalse。由于您在每个案例bool(cipher)bool(keydecrypt)传递非空字符串,因此每个字符串只转换为Truexor(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)

你犯了一些错误:

  1. cipherkeydecrypt不是二进制,它们是包含0和1个字符的字符串。
  2. 无需导入xor函数,您已经拥有xor运算符^
  3. 如果string ==''将字符串转换为boolean,那么在其他所有情况下都会返回True,这不是你想要的。
  4. 我不明白最后for应该做什么。
  5. 以下是有关如何改进代码的示例:

    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,这也会有用。