gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-api] branch master updated: integrate refresh paybac


From: gnunet
Subject: [GNUnet-SVN] [taler-api] branch master updated: integrate refresh payback with standard payback API call
Date: Mon, 22 Jul 2019 19:16:12 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository api.

The following commit(s) were added to refs/heads/master by this push:
     new a401998  integrate refresh payback with standard payback API call
a401998 is described below

commit a401998c5c3ef70408fae9b9fec61b95b45bf639
Author: Christian Grothoff <address@hidden>
AuthorDate: Mon Jul 22 19:16:10 2019 +0200

    integrate refresh payback with standard payback API call
---
 api-exchange.rst | 55 +++++++++++++------------------------------------------
 1 file changed, 13 insertions(+), 42 deletions(-)

diff --git a/api-exchange.rst b/api-exchange.rst
index 32f3d5c..1d03dae 100644
--- a/api-exchange.rst
+++ b/api-exchange.rst
@@ -927,45 +927,6 @@ the API during normal operation.
     }
 
 
-.. http:post:: /refresh/payback
-
-  When a fresh coin that was obtained via refresh is revoked, the refresh 
payback can be used
-  to revert the refresh and credit the old coin with the refreshed coin's 
value.
-
-  :status 200 OK:
-    The old coin was successfully credited with the value of the revoked new 
coin.
-  :status 404 Not Found:
-    Either the refresh commitment has not been seen by the exchange before,
-    the old coin was not found among the refreshed coins,
-    or the blinded new coin's public key has not been seen and signed before
-    by the exchange.
-  :status 401 Unauthorized:
-    The blinding secret does not match the signature stored by the exchange
-    the new_coin_ev.
-
-  **Details:**
-
-  Request body contains a JSON object with the following fields:
-
-  .. code-block:: tsref
-
-    interface RefreshPaybackRequest {
-      // Public key of the old coin that should receive the
-      // refund for the refreshed coin.
-      old_coin_pub: RsaPublicKey;
-
-      // Blinded public key of the coin of the revoked denomination.
-      new_coin_ev: CoinEnvelope;
-
-      // Secret blinding factor of the new coin
-      new_coin_blinding_secret: RsaBlindingKeySecret;
-
-      // Commitment that identifies the refresh operation.
-      // Redundant, but speeds up the exchange's database lookup.
-      rc: HashCode;
-    }
-
-
 .. http:get:: /refresh/link
 
   Link the old public key of a melted coin to the coin(s) that were exchangeed 
during the refresh operation.
@@ -1079,6 +1040,10 @@ in using this API.
 
       // Signature of `TALER_PaybackRequestPS`_ created with the `coin's 
private key <coin-priv>`_
       coin_sig: EddsaSignature;
+
+      // Was the coin refreshed (and thus the payback should go to the old 
coin)?
+      // Optional (for backwards compatibility); if absent, "false" is assumed
+      refreshed?: boolean;
     }
 
 
@@ -1086,8 +1051,13 @@ in using this API.
   .. code-block:: tsref
 
     interface PaybackConfirmation {
-      // public key of the reserve that will receive the payback.
-      reserve_pub: EddsaPublicKey;
+      // public key of the reserve that will receive the payback,
+      // provided if refreshed was false.
+      reserve_pub?: EddsaPublicKey;
+
+      // public key of the old coin that will receive the payback,
+      // provided if refreshed was true.
+      old_coin_pub?: EddsaPublicKey;
 
       // How much will the exchange pay back (needed by wallet in
       // case coin was partially spent and wallet got restored from backup)
@@ -1096,7 +1066,8 @@ in using this API.
       // Time by which the exchange received the /payback request.
       timestamp: Timestamp;
 
-      // the EdDSA signature of `TALER_PaybackConfirmationPS`_ using a current
+      // the EdDSA signature of `TALER_PaybackConfirmationPS`_ (refreshed 
false)
+      // or `TALER_PaybackRefreshConfirmationPS_` (refreshed true) using a 
current
       // `signing key of the exchange <sign-key-priv>`_ affirming the 
successful
       // payback request, and that the exchange promises to transfer the funds
       // by the date specified (this allows the exchange delaying the transfer

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]