summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-10-03 17:44:44 +0200
committerMarcello Stanisci <stanisci.m@gmail.com>2019-10-03 17:45:19 +0200
commit1f4f050dcb410f328b4f5fe642566a97113cf304 (patch)
tree0f467af843b50a5f97c0924274a2af64b7928fa0
parent52467b7cf3c7a535d15ea9769f6196fb94291993 (diff)
downloaddocs-1f4f050dcb410f328b4f5fe642566a97113cf304.tar.gz
docs-1f4f050dcb410f328b4f5fe642566a97113cf304.tar.bz2
docs-1f4f050dcb410f328b4f5fe642566a97113cf304.zip
specify that exponent and modulus are _public_
-rw-r--r--libeufin/api-sandbox.rst24
1 files changed, 12 insertions, 12 deletions
diff --git a/libeufin/api-sandbox.rst b/libeufin/api-sandbox.rst
index 619ee040..4270b71b 100644
--- 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;