summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/api-merchant.rst13
1 files changed, 9 insertions, 4 deletions
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
index 4fc736a8..22c090f9 100644
--- a/core/api-merchant.rst
+++ b/core/api-merchant.rst
@@ -1,6 +1,6 @@
..
This file is part of GNU TALER.
- Copyright (C) 2014, 2015, 2016, 2017 Taler Systems SA
+ Copyright (C) 2014-2020 Taler Systems SA
TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
@@ -1286,11 +1286,16 @@ both by the user's browser and their wallet.
.. ts:def:: TipResponse
interface TipResponse {
- // Public key of the reserve
- reserve_pub: EddsaPublicKey;
+ // Blind RSA signatures over the planchets.
// The order of the signatures matches the planchets list.
- reserve_sigs: EddsaSignature[];
+ blind_sigs: BlindSignature[];
+ }
+
+ interface BlindSignature {
+
+ // The (blind) RSA signature. Still needs to be unblinded.
+ blind_sig: RsaSignature;
}