gnunet-svn
[Top][All Lists]
Advanced

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

[taler-docs] branch master updated: Expand CoinEnvelope to the actual tw


From: gnunet
Subject: [taler-docs] branch master updated: Expand CoinEnvelope to the actual two types: RSACoinEnvelope and CSCoinEnvelope, depending on the cipher
Date: Thu, 16 Mar 2023 11:57:59 +0100

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

oec pushed a commit to branch master
in repository docs.

The following commit(s) were added to refs/heads/master by this push:
     new ecf7292  Expand CoinEnvelope to the actual two types: RSACoinEnvelope 
and CSCoinEnvelope, depending on the cipher
ecf7292 is described below

commit ecf7292844e3ec42be857ff322b322287c08e74b
Author: Özgür Kesim <oec-taler@kesim.org>
AuthorDate: Thu Mar 16 11:57:49 2023 +0100

    Expand CoinEnvelope to the actual two types: RSACoinEnvelope and 
CSCoinEnvelope, depending on the cipher
---
 core/api-common.rst | 27 +++++++++++++++++++++++++--
 1 file changed, 25 insertions(+), 2 deletions(-)

diff --git a/core/api-common.rst b/core/api-common.rst
index 6be51f4..ab7726a 100644
--- a/core/api-common.rst
+++ b/core/api-common.rst
@@ -424,8 +424,31 @@ Blinded coin
 
 .. ts:def:: CoinEnvelope
 
-  // Blinded coin's `public EdDSA key <eddsa-coin-pub>`, `base32` encoded.
-  type CoinEnvelope = string;
+  // The type of a coin's blinded envelope depends on the cipher that is used
+  // for signing with a denomination key.
+  type CoinEnvelope = RSACoinEnvelope | CSCoinEnvelope ;
+
+.. ts:def:: RSACoinEnvelope
+
+  // For denomination signatures based on RSA, the planchet is just a blinded
+  // coin's `public EdDSA key <eddsa-coin-pub>`.
+  interface RSACoinEnvelope {
+    cipher: "RSA" | "RSA+age_restricted";
+    rsa_blinded_planchet: string;          // Crockford `Base32` encoded
+  }
+
+.. ts:def:: CSCoinEnvelope
+
+  // For denomination signatures based on Blind Clause-Schnorr, the planchet
+  // consists of the public nonce and two Curve25519 scalars which are two
+  // blinded challenges in the Blinded Clause-Schnorr signature scheme.
+  // See https://taler.net/papers/cs-thesis.pdf for details.
+  interface CSCoinEnvelope {
+    cipher: "CS" | "CS+age_restricted";
+    cs_nonce: string;      // Crockford `Base32` encoded
+    cs_blinded_c0: string; // Crockford `Base32` encoded
+    cs_blinded_c1: string; // Crockford `Base32` encoded
+  }
 
 .. ts:def:: DenominationBlindingKeyP
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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