commit cd794638cc32a498ab2545c506d8c0af9bae5d7d
parent 9022488ba40a0fe16ce787f25a7b0e3000bc1beb
Author: Christian Grothoff <christian@grothoff.org>
Date: Fri, 27 Nov 2020 14:37:52 +0100
no salt
Diffstat:
1 file changed, 9 insertions(+), 11 deletions(-)
diff --git a/core/api-exchange.rst b/core/api-exchange.rst
@@ -322,9 +322,6 @@ possibly by using HTTPS.
// payto:// URL identifying the account and wire method
url: string;
- // Salt value (used when hashing 'url' to verify signature)
- salt: string;
-
// Signature using the exchange's offline key
// with purpose TALER_SIGNATURE_MASTER_WIRE_DETAILS.
master_sig: EddsaSignature;
@@ -393,10 +390,10 @@ Management operations authorized by master key
master_pub: EddsaPublicKey;
// Public key of the denomination security module.
- denom_secmod_pub: EddsaPublicKey;
+ denom_secmod_public_key: EddsaPublicKey;
// Public key of the signkey security module.
- signkey_secmod_pub: EddsaPublicKey;
+ signkey_secmod_public_key: EddsaPublicKey;
}
@@ -683,12 +680,13 @@ Management operations authorized by master key
// payto:// URL identifying the account and wire method
payto_uri: string;
- // Salt value (used when hashing 'url' to verify signature)
- salt: string;
-
// Signature using the exchange's offline key
// with purpose TALER_SIGNATURE_MASTER_WIRE_DETAILS.
- master_sig: EddsaSignature;
+ master_sig_wire: EddsaSignature;
+
+ // Signature using the exchange's offline key
+ // with purpose TALER_SIGNATURE_MASTER_WIRE_ADD.
+ master_sig_add: EddsaSignature;
// When does the wire method become active?
// Should be the time when the signature was created,
@@ -734,8 +732,8 @@ Management operations authorized by master key
payto_uri: string;
// Signature using the exchange's offline key
- // with purpose TALER_SIGNATURE_MASTER_WIRE_DETAILS.
- master_sig: EddsaSignature;
+ // with purpose TALER_SIGNATURE_MASTER_WIRE_DEL.
+ master_sig_del: EddsaSignature;
// Should be the time when the signature was created,
// using the (monotonic!) local time of the system