From 41949417483a3b3ccf13db86191068a6dda004c2 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Mon, 29 Apr 2019 15:27:56 -0400 Subject: [PATCH] Source.hash is using SHA-384 instead of SHA-256 --- v2/proto/claim.proto | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2/proto/claim.proto b/v2/proto/claim.proto index 4d8e037..b69ac79 100644 --- a/v2/proto/claim.proto +++ b/v2/proto/claim.proto @@ -54,7 +54,7 @@ message ClaimList { } message Source { - bytes hash = 1; // SHA-256 hash of the entire unencrypted file + bytes hash = 1; // SHA-384 hash of the entire unencrypted file string name = 2; uint64 size = 3; string media_type = 4;