Commit graph

6 commits

Author SHA1 Message Date
Leonard Lyubich
74e917810a service: support broken apart signable payload of the requests
In previous implementation service package provided types and functions
that wrapped signing/verification of data with session token.
This allowed us to use these functions for signing / verification of
service requests of other packages. To support the expansion of messages
with additional parts that need to be signed, you must be able to easily
expand the signed data with new parts.

To achieve the described goal, this commit makes the following changes:

  * adds GroupSignedPayloads and GroupVerifyPayloads functions;

  * renames SignedDataWithToken to RequestData, DataWithTokenSignAccumulator
    to RequestSignedData, DataWithTokenSignSource to RequestVerifyData;

  * renames SignDataWithSessionToken/VerifyAccumulatedSignaturesWithToken
    function to SignRequestData/VerifyRequestData and makes it to use
    GroupSignedPayloads/GroupVerifyPayloads internally.
2020-06-10 20:37:10 +03:00
Leonard Lyubich
3fb293543f accounting: implement SignedDataSource on DeleteRequest message 2020-05-11 13:29:04 +03:00
Leonard Lyubich
81f537cda8 accounting: implement SignedDataSource on ListRequest message 2020-05-11 13:20:58 +03:00
Leonard Lyubich
8c492a7712 accounting: implement SignedDataSource on PutRequest message 2020-05-11 13:14:31 +03:00
Leonard Lyubich
6832d71d48 accounting: implement SignedDataSource on GetRequest message 2020-05-11 12:54:21 +03:00
Leonard Lyubich
b9d30d6138 accounting: implement SignedDataSource on BalanceRequest message 2020-05-11 11:59:39 +03:00