编辑:Emerson Farrugia在以下位置回答了此问题:What is the algorithm to compute the Amazon-S3 Etag for a file larger than 5GB?
您可能已经知道,当使用亚马逊多部分上传API上传大型文件时:
Initiate Multipart Upload -> Upload Part 1, Upload Part2 ... Upload Part n -> Complete Multipart Upload
“完成分段上传”将返回具有以下格式的ETag:
multiparthash-number
其中数字是使用“上传部件”上传的部件的数量。
现在我的问题是如何计算 multiparthash 。我在博客中找到了一些陈述:
multiparthash = md5(L1:H1:L2:H2…:Ln:Hn:)
其中Ln是索引,Hn是n部分的ETAg。但至少对我来说,这不起作用。
是否有关于此或任何专有技术的官方文档?