taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 9022488ba40a0fe16ce787f25a7b0e3000bc1beb
parent 49517752ec1182d0e8540c93ddb0d79328c78006
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu, 26 Nov 2020 14:37:12 +0100

reflect sec mod keys in /management/keys reply

Diffstat:
Mcore/api-exchange.rst | 15+++++++++++++++
1 file changed, 15 insertions(+), 0 deletions(-)

diff --git a/core/api-exchange.rst b/core/api-exchange.rst @@ -388,6 +388,16 @@ Management operations authorized by master key // The exchange's future signing keys (only those lacking a master signature). future_signkeys: FutureSignKey[]; + // Master public key expected by this exchange (provided so that the + // offline signing tool can check that it has the right key). + master_pub: EddsaPublicKey; + + // Public key of the denomination security module. + denom_secmod_pub: EddsaPublicKey; + + // Public key of the signkey security module. + signkey_secmod_pub: EddsaPublicKey; + } .. ts:def:: FutureDenom @@ -423,6 +433,9 @@ Management operations authorized by master key // Fee charged by the exchange for refunding a coin of this denomination fee_refund: Amount; + // Signature over this denomination by the denomination security module. + denom_secmod_sig: EddsaSignature; + } .. ts:def:: FutureSignKey @@ -442,6 +455,8 @@ Management operations authorized by master key // henceforth no longer be considered valid in legal disputes. stamp_end: Timestamp; + // Signature over this signing key by the signkey security module. + signkey_secmod_sig: EddsaSignature; }