taler-docs

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

commit 9513fe00000b3d83e9963ccba90f46fb0208151b
parent 63b675a7f1f55b1d31618ff668e28ea5e4d30a71
Author: Antoine A <>
Date:   Sat, 28 Feb 2026 10:50:10 +0100

dd80: API improvements

Diffstat:
Mdesign-documents/080-short-wire-subject.rst | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/design-documents/080-short-wire-subject.rst b/design-documents/080-short-wire-subject.rst @@ -222,11 +222,11 @@ Taler Wire Transfer HTTP API // Public key encoded inside the subject authorization_pub: EddsaPublicKey; - // Signature of the account_pub public key using the authorization_key private key + // Signature of the account_pub public key using the authorization_pub private key authorization_signature: EddsaSignature; - // Whether the authorization_key will be reused for recurrent transfers - // Disable bounces in case of authorization_key reuse + // Whether the authorization_pub will be reused for recurrent transfers + // Disable bounces in case of authorization_pub reuse recurrent: boolean; } @@ -315,9 +315,9 @@ Taler Wire Transfer HTTP API timestamp: string; // Public key used for registration - authorization_key: EddsaPublicKey; + authorization_pub: EddsaPublicKey; - // Signature of the timestamp using the authorization_key private key + // Signature of the timestamp using the authorization_pub private key // Necessary to prevent replay attack authorization_signature: EddsaSignature; }