我有2个密文表示的密文。我想将密文#2与密文#1进行异或。这部分通过xor_strings功能可以正常工作。然后,我想将xor_strings返回的字符串中的每个字母与空格字符(其ASCII码等于十六进制的20)进行异或运算。但是这部分不适用于我,当我运行代码时出现此错误:

Traceback (most recent call last):
  File "hexor.py", line 18, in <module>
    xored_with_space=xor_space(xored,binary_space)
  File "hexor.py", line 5, in xor_space
    return "".join(chr(ord(xored) ^ ord(binary_space)) for x in xored)
  File "hexor.py", line 5, in <genexpr>
    return "".join(chr(ord(xored) ^ ord(binary_space)) for x in xored)
TypeError: ord() expected a character, but string of length 4 found


这是我正在运行的代码:

def xor_strings(xs, ys):
    return "".join(chr(ord(x) ^ ord(y)) for x, y in zip(xs, ys))


def xor_space(xored,binary_space):
    return "".join(chr(ord(xored) ^ ord(binary_space)) for x in xored)

a=raw_input("enter first cipher \n")
b=raw_input("enter second cipher \n")
space="20" #hex ASCII value of space

#convert  to binary
binary_a = a.decode("hex")
binary_b = b.decode("hex")
binary_space=space.decode("hex")

xored = xor_strings(binary_a, binary_b).encode("hex")
xored_with_space=xor_space(xored,binary_space)

print xored
print xored_with_space


您能帮我解决问题吗?

最佳答案

使用您编写的功能来完成此任务...

def xor_space(xored,binary_space):
    return xor_strings(xored," "*len(xored))


我还怀疑您可能不完全理解二进制一词及其含义

我不确定您认为a.decode("hex")的作用是什么...但是我很确定它没有按照您的想法做(尽管这也可能我错了)...

关于python - 如何在Python中对十六进制字符串与空间进行异或,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31819721/

10-13 07:22