gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [taler-docs] branch master updated: more on ini-letters


From: gnunet
Subject: [GNUnet-SVN] [taler-docs] branch master updated: more on ini-letters
Date: Tue, 01 Oct 2019 13:04:30 +0200

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

marcello pushed a commit to branch master
in repository docs.

The following commit(s) were added to refs/heads/master by this push:
     new d17e80d  more on ini-letters
d17e80d is described below

commit d17e80dc87e4a4bd1c2022bb3b7b8f03569f5981
Author: Marcello Stanisci <address@hidden>
AuthorDate: Tue Oct 1 13:04:24 2019 +0200

    more on ini-letters
---
 libeufin/api-sandbox.rst | 50 +++++++++++++++++++++++++++++++++++++++---------
 1 file changed, 41 insertions(+), 9 deletions(-)

diff --git a/libeufin/api-sandbox.rst b/libeufin/api-sandbox.rst
index 631c1ea..8879134 100644
--- a/libeufin/api-sandbox.rst
+++ b/libeufin/api-sandbox.rst
@@ -93,10 +93,12 @@ HTTP API
         // Human name of the user
         name: string;
 
-        // Date of key creation.  DD.MM.YYYY format.
+        // As per specification, this value is:
+        // "Date of processing of the corresponding EBICS order".  DD.MM.YYYY 
format.
         date: string;
 
-        // Time of key creation.  HH:MM:SS format.
+        // As per specification, this value is:
+        // "Time of processing of the corresponding EBICS order".  HH:MM:SS 
format.
         time: string;
 
         // Recipient.  Bank "ID" (FIXME to be specified).
@@ -106,9 +108,11 @@ HTTP API
         es_version: string;
 
         // RSA key exponent
+        exponent_length: number;
         exponent: string;
 
         // RSA key modulus
+        modulus_length: number;
         modulus: string;
 
         // RSA key hash
@@ -126,28 +130,56 @@ HTTP API
         // Human name of the user
         name: string;
 
-        // Date of key creation.  DD.MM.YYYY format.
+        // As per specification, this value is:
+        // "Date of processing of the corresponding EBICS order".  DD.MM.YYYY 
format.
         date: string;
 
-        // Time of key creation.  HH:MM:SS format.
+        // As per specification, this value is:
+        // "Time of processing of the corresponding EBICS order".  HH:MM:SS 
format.
         time: string;
 
         // Recipient.  Bank "ID" (FIXME to be specified).
         recipient: string;
 
-        // Identification and authentication signature version, X002 for 
example.
+        ////////////////////////////////////////////////////
+        // Identification and authentication key details. //
+        ////////////////////////////////////////////////////
+
+        // Identification and authentication signature version, X002
+        // for example.
         ia_version: string;
 
+        // length of the exponent, in bits.
+        ia_exp_length: number;
+        // RSA key exponent
+        ia_exponent: string;
+
+        // length of the modulus, in bits.
+        ia_mod_length: number;
+        // RSA key modulus
+        ia_modulus: string;
+
+        // Hash of the identification and authentication key.
+        ia_hash: string;
+
+        /////////////////////////////
+        // Encryption key details. //
+        /////////////////////////////
+
         // Encryption version, E002 for example.
         enc_version: string;
 
+        // length of the exponent, in bits.
+        enc_exp_length: number;
         // RSA key exponent
-        exponent: string;
+        enc_exponent: string;
 
+        // length of the modulus, in bits.
+        enc_mod_length: number;
         // RSA key modulus
-        modulus: string;
+        enc_modulus: string;
 
-        // RSA key hash
-        hash: string;
+        // RSA key hash.
+        enc_hash: string;
       }
     } 

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



reply via email to

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