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: JSON API for INI/HIA le


From: gnunet
Subject: [GNUnet-SVN] [taler-docs] branch master updated: JSON API for INI/HIA letters emulation.
Date: Mon, 30 Sep 2019 15:52:09 +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 5a11c66  JSON API for INI/HIA letters emulation.
5a11c66 is described below

commit 5a11c666e9bd2d6c8ca83710721fae8775916dfa
Author: Marcello Stanisci <address@hidden>
AuthorDate: Mon Sep 30 15:51:18 2019 +0200

    JSON API for INI/HIA letters emulation.
---
 libeufin/api-sandbox.rst | 71 ++++++++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 68 insertions(+), 3 deletions(-)

diff --git a/libeufin/api-sandbox.rst b/libeufin/api-sandbox.rst
index df0be59..93ee1f8 100644
--- a/libeufin/api-sandbox.rst
+++ b/libeufin/api-sandbox.rst
@@ -81,7 +81,72 @@ HTTP API
   .. code-block:: tsref
 
     interface KeyLetterRequest {
-      partnerId: string;
-      userId: string;
-      // FIXME: other fields: see spec and put here
+
+      INI: {
+        // The user ID that participates in a EBICS subscriber.
+        userId: string;
+
+        // The customer ID specific to the bank (therefore not
+        // participating in a EBICS subscriber).
+        customerId: string;
+
+        // Human name of the user
+        name: string;
+
+        // Date of key creation.  DD.MM.YYYY format.
+        date: string;
+
+        // Time of key creation.  HH:MM:SS format.
+        time: string;
+
+        // Recipient.  Bank "ID" (FIXME to be specified).
+        recipient: string;
+
+        // Electronic signature version.  A004, for example.
+        es_version: string;
+
+        // RSA key exponent
+        exponent: string;
+
+        // RSA key modulus
+        modulus: string;
+
+        // RSA key hash
+        hash: string;
+    }
+
+    HIA: {
+        // The user ID that participates in a EBICS subscriber.
+        userId: string;
+
+        // The customer ID specific to the bank (therefore not
+        // participating in a EBICS subscriber).
+        customerId: string;
+
+        // Human name of the user
+        name: string;
+
+        // Date of key creation.  DD.MM.YYYY format.
+        date: string;
+
+        // Time of key creation.  HH:MM:SS format.
+        time: string;
+
+        // Recipient.  Bank "ID" (FIXME to be specified).
+        recipient: string;
+
+        // Identification and authentication signature version, X002 for 
example.
+        ia_version: string;
+
+        // Encryption version, E002 for example.
+        enc_version: string;
+
+        // RSA key exponent
+        exponent: string;
+
+        // RSA key modulus
+        modulus: string;
+
+        // RSA key hash
+        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]