From 9022488ba40a0fe16ce787f25a7b0e3000bc1beb Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Thu, 26 Nov 2020 14:37:12 +0100 Subject: reflect sec mod keys in /management/keys reply --- core/api-exchange.rst | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'core') diff --git a/core/api-exchange.rst b/core/api-exchange.rst index d36fad4a..e6a03f28 100644 --- 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; } -- cgit v1.2.3