我刚刚发现了AWS Glacier服务,并希望编写一个小型 Python应用程序来通过REST API上传文件。我看了一下所需的标题,偶然发现x-amz-sha256-tree-hash
。我需要计算整个文件的SHA-256哈希值以及每个1 MB块的所有哈希值的父哈希值。这导致了以下树:
(图片取自here)
我已经创建了一个读取1 MB块的函数和一个即时计算其哈希值的类,但后来我完全挣扎了:
在我的应用程序中,我创建了一个名为chunk
的类,它接收数据并计算__init__
方法中的哈希值,并保存父项和子项(如常规树)。
当用户打开文件时,将使用各自的哈希值(在此示例中为7个块实例)正确生成这些块实例。
现在我有两个相互联系的大问题:
我在SO上查看了this topic,但该方法仅适用于偶数儿童计数,但并非总是如此。
你能帮我找到解决这个问题的方法/算法/方法吗?
提前致谢!
保
答案 0 :(得分:4)
首先计算等级数,然后
def proclevel(levels):
if levels > 0:
generator = proclevel(levels - 1)
temp = None
for firsthash, secondhash in generator:
if not temp: temp = hashofthem(firsthash, secondhash)
else: yield temp, hashofthem(firsthash, secondhash); temp = None
#If odd number of packets
if temp: yield temp, None
else:
temp = None
for chunk in chunks:
if not temp: temp = hash(chunk)
else: yield temp, hash(chunk); temp = None
if temp: yield temp, None
确保在hashofthem中处理None作为第二个参数:)