commit 1dd236d07a9b1b926d64701723838d2cd954d9ca
parent 46153814799e420ba8022557b3fa64d1079a3e72
Author: Christian Grothoff <christian@grothoff.org>
Date: Sat, 15 Jun 2024 19:56:15 +0200
-fix doxygen
Diffstat:
1 file changed, 14 insertions(+), 13 deletions(-)
diff --git a/src/include/taler_crypto_lib.h b/src/include/taler_crypto_lib.h
@@ -2323,7 +2323,7 @@ struct TALER_TokenUsePublicKeyHashP
/**
* The private key of a token. An EdDSA private key generated by the wallet.
- * Used to create @struct TALER_TokenUseSignatureP confirm the usage of a token.
+ * Used to create a struct TALER_TokenUseSignatureP to confirm the usage of a token.
*/
struct TALER_TokenUsePrivateKeyP
{
@@ -2368,7 +2368,6 @@ struct TALER_TokenUseMerchantValues
};
-
/**
* The blinded token use public key of a token. Ready to be signed by the merchant.
*/
@@ -2396,7 +2395,8 @@ TALER_token_issue_sig_free (struct TALER_TokenIssueSignatureP *issue_sig);
* @param[in] issue_sig signature to free
*/
void
-TALER_blinded_issue_sig_free (struct TALER_TokenIssueBlindSignatureP *issue_sig);
+TALER_blinded_issue_sig_free (struct TALER_TokenIssueBlindSignatureP *issue_sig)
+;
/**
@@ -2457,7 +2457,8 @@ TALER_token_blind_input_rsa_singleton ();
*/
void
TALER_token_blind_input_copy (struct TALER_TokenUseMerchantValues *bi_dst,
- const struct TALER_TokenUseMerchantValues *bi_src);
+ const struct TALER_TokenUseMerchantValues *bi_src)
+;
/**
@@ -3093,15 +3094,15 @@ TALER_CRYPTO_helper_esign_sign_ (
* @return the error code (or #TALER_EC_NONE on success)
*/
#define TALER_CRYPTO_helper_esign_sign(esh,ps,epub,esig) ( \
- /* check size is set correctly */ \
- GNUNET_assert (ntohl ((ps)->purpose.size) == sizeof (*ps)), \
- /* check 'ps' begins with the purpose */ \
- GNUNET_static_assert (((void*) (ps)) == \
- ((void*) &(ps)->purpose)), \
- TALER_CRYPTO_helper_esign_sign_ (esh, \
- &(ps)->purpose, \
- epub, \
- esig) )
+ /* check size is set correctly */ \
+ GNUNET_assert (ntohl ((ps)->purpose.size) == sizeof (*ps)), \
+ /* check 'ps' begins with the purpose */ \
+ GNUNET_static_assert (((void*) (ps)) == \
+ ((void*) &(ps)->purpose)), \
+ TALER_CRYPTO_helper_esign_sign_ (esh, \
+ &(ps)->purpose, \
+ epub, \
+ esig) )
/**