commit 505c40867519ede39a3087b60e86de2004275a10
parent 0c235b70616c2f456814e4fd2c2558f5ee6f3870
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 12 Apr 2020 20:46:50 +0200
API updates for merchant implementation of #6173
Diffstat:
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git 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;
}