summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-11-26 14:37:12 +0100
committerChristian Grothoff <christian@grothoff.org>2020-11-26 14:37:12 +0100
commit9022488ba40a0fe16ce787f25a7b0e3000bc1beb (patch)
tree3cc81b9764ea3a84e12668cb21f1a9374bda0ac3 /core
parent49517752ec1182d0e8540c93ddb0d79328c78006 (diff)
downloaddocs-9022488ba40a0fe16ce787f25a7b0e3000bc1beb.tar.gz
docs-9022488ba40a0fe16ce787f25a7b0e3000bc1beb.tar.bz2
docs-9022488ba40a0fe16ce787f25a7b0e3000bc1beb.zip
reflect sec mod keys in /management/keys reply
Diffstat (limited to 'core')
-rw-r--r--core/api-exchange.rst15
1 files changed, 15 insertions, 0 deletions
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;
}