[#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 <alexey@nspcc.ru>
This commit is contained in:
Alex Vanin 2020-07-31 17:21:02 +03:00 committed by Stanislav Bogatyrev
parent 944cf1ff47
commit 9510aaee5d

View file

@ -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;
}