我是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')
答案 0 :(得分:2)
只需连接两个字符串然后哈希。
答案 1 :(得分:0)
在寻求有关同一主题的建议时,只需对此发表评论:
"hello", "world"
与"hel", "loworld"
具有相同的哈希值。"5hello5world"
和"3hel8loworld"
进行散列处理,并且不太可能产生冲突。__hash__
,则可以执行hash(hash(a) + hash(b))
。