taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit 1f4f050dcb410f328b4f5fe642566a97113cf304
parent 52467b7cf3c7a535d15ea9769f6196fb94291993
Author: Marcello Stanisci <stanisci.m@gmail.com>
Date:   Thu,  3 Oct 2019 17:44:44 +0200

specify that exponent and modulus are _public_

Diffstat:
Mlibeufin/api-sandbox.rst | 24++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/libeufin/api-sandbox.rst b/libeufin/api-sandbox.rst @@ -108,14 +108,14 @@ HTTP API version: string; // Length in bits of the key exponent. - exponent_length: number; + public_exponent_length: number; // RSA key exponent in hexadecimaml notation. - exponent: string; + public_exponent: string; // Length in bits of the key modulus. - modulus_length: number; + public_modulus_length: number; // RSA key modulus in hexadecimaml notation. - modulus: string; + public_modulus: string; // RSA key hash. // @@ -155,14 +155,14 @@ HTTP API ia_version: string; // length of the exponent, in bits. - ia_exponent_length: number; + ia_public_exponent_length: number; // RSA key exponent in hexadecimaml notation. - ia_exponent: string; + ia_public_exponent: string; // length of the modulus, in bits. - ia_modulus_length: number; + ia_public_modulus_length: number; // RSA key modulus in hexadecimaml notation. - ia_modulus: string; + ia_public_modulus: string; // SHA-256 hash of the identification and authentication key. ia_hash: string; @@ -175,14 +175,14 @@ HTTP API enc_version: string; // length of the exponent, in bits. - enc_exponent_length: number; + enc_public_exponent_length: number; // RSA key exponent in hexadecimaml notation. - enc_exponent: string; + enc_public_exponent: string; // length of the modulus, in bits. - enc_modulus_length: number; + enc_public_modulus_length: number; // RSA key modulus in hexadecimaml notation. - enc_modulus: string; + enc_public_modulus: string; // SHA-256 hash of the encryption key. enc_hash: string;