在 python 中对二进制文件进行异或
我正在编写一个简单的哈希函数,它获取输入并创建一个 32 位哈希文件。我陷入了异或部分。我不确定应该如何编写异或函数。请帮我解决这个问题。这是我已经完成的代码:
import BitVector
import io
import math
import struct
if __name__ == "__main__":
message = raw_input("your message:")
f= open('file.dat','w')
f.write(message)
f.close()
f = open('file.dat')
while 1:
r = f.readline(1)
hx = r.encode("hex")
data = bin(int(hx, 16))[2:]
key = 11111111
x = int(data) ^ int(key)
print hex(x)
if not r:break
f.close()
I'm in the middle of writing a simple hash function which get the input and creates a 32 bit hash file. I'm stuck in the xor part. And i'm not sure how i should write the function for xor. please help me with this. here is the code that i have done yet:
import BitVector
import io
import math
import struct
if __name__ == "__main__":
message = raw_input("your message:")
f= open('file.dat','w')
f.write(message)
f.close()
f = open('file.dat')
while 1:
r = f.readline(1)
hx = r.encode("hex")
data = bin(int(hx, 16))[2:]
key = 11111111
x = int(data) ^ int(key)
print hex(x)
if not r:break
f.close()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
运算符
^
对您来说已经足够了。您应该关心的是密钥的位大小和“异或”数据的位大小,以确保功能。
顺便说一句,异或运算应该只适用于整数。
The operator
^
is quite enough for you.All you should care about is the the bit size of your key and the bit size of data to 'xor', to make sure the functionality.
By the way, xor operations should just apply to integers.
尝试使用它进行异或:
对于二进制异或,其中数据和密钥是二进制值并使用
^
字符,您可以使用:
让我知道这是否有帮助。
try using this for xoring:
For binary xoring, where data and key are binary values and using
^
character,you can use:
Let me know if this helps.