From 9510aaee5d4888225ef227df1ad4b6ff1f1750e5 Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Fri, 31 Jul 2020 17:21:02 +0300 Subject: [PATCH] [#21] Return signature in GetEACL response With EACLTable signature client can verify if EACLTable is not corrupted by malicious node. Signed-off-by: Alex Vanin --- container/service.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/container/service.proto b/container/service.proto index b650ecc..6ce6ff0 100644 --- a/container/service.proto +++ b/container/service.proto @@ -132,4 +132,6 @@ message GetExtendedACLRequest { message GetExtendedACLResponse { // EACL that has been requested if it was set up. acl.EACLTable EACL = 1; + // Signature of stable-marshalled Extended ACL according to RFC-6979. + bytes Signature = 2; }