gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [taler-exchange] branch master updated: add pay session sig


From: gnunet
Subject: [GNUnet-SVN] [taler-exchange] branch master updated: add pay session signature
Date: Thu, 04 Jan 2018 13:47:08 +0100

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

dold pushed a commit to branch master
in repository exchange.

The following commit(s) were added to refs/heads/master by this push:
     new acc3a41  add pay session signature
acc3a41 is described below

commit acc3a41df812b59a1775d3fc0697a0b73d847963
Author: Florian Dold <address@hidden>
AuthorDate: Thu Jan 4 13:47:03 2018 +0100

    add pay session signature
---
 src/include/taler_signatures.h | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/src/include/taler_signatures.h b/src/include/taler_signatures.h
index 6355303..c281d21 100644
--- a/src/include/taler_signatures.h
+++ b/src/include/taler_signatures.h
@@ -178,6 +178,12 @@
  */
 #define TALER_SIGNATURE_MERCHANT_REFUND_OK 1105
 
+/**
+ * Signature where the merchant confirms that the user replayed
+ * a payment for a browser session.
+ */
+#define TALER_SIGNATURE_MERCHANT_PAY_SESSION 1106
+
 
 /*********************/
 /* Wallet signatures */
@@ -1291,6 +1297,31 @@ struct TALER_MerchantRefundConfirmationPS
 
 };
 
+/**
+ * Used by the merchant to confirm to the frontend that
+ * the user did a payment replay with the current browser session.
+ */
+struct TALER_MerchantPaySessionSigPS
+{
+  /**
+   * Set to #TALER_SIGNATURE_MERCHANT_PAY_SESSION.
+   */
+  struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
+
+  /**
+   * Hashed order id.
+   * Hashed without the 0-termination.
+   */
+  struct GNUNET_HashCode h_order_id GNUNET_PACKED;
+
+  /**
+   * Hashed session id.
+   * Hashed without the 0-termination.
+   */
+  struct GNUNET_HashCode h_session_id GNUNET_PACKED;
+
+};
+
 GNUNET_NETWORK_STRUCT_END
 
 #endif

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



reply via email to

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