我对Python很陌生,想创建一些将两个字符串哈希在一起的代码。特别是对于我的情况,我想哈希文件的哈希值和比特币区块哈希值。下面的代码显然不起作用,因为sha256()仅接受一个参数。你们知道吗?
谢谢,
from __future__ import print_function
import blocktrail, time, csv, hashlib, sys
client = blocktrail.APIClient(api_key="x", api_secret="x", network="BTC", testnet=False)
address = client.address('x')
latest_block = client.block_latest()
hash_list = []
h = latest_block['hash']
sha256 = hashlib.sha256()
BUF_SIZE = 65536
print("test")
with open('entries#x.csv', 'rb') as entriesfile:
buf = entriesfile.read(BUF_SIZE)
while len(buf) > 0:
sha256.update(buf)
buf = entriesfile.read(BUF_SIZE)
print(sha256.hexdigest())
entryhash = sha256.hexdigest()
hashofhe = hashlib.sha256(b'entryhash', 'h')
仅连接两个字符串,然后对其进行哈希处理。
在我就同一主题寻求建议时,只需对此发表评论:
"hello", "world"
与"hel", "loworld"
具有相同的哈希。"5hello5world"
和"3hel8loworld"
进行散列,并且不太可能产生冲突。__hash__
,则可以执行hash(hash(a) + hash(b))
。