diff options
author | Christian Grothoff <christian@grothoff.org> | 2024-06-15 19:56:15 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2024-06-15 19:56:15 +0200 |
commit | 1dd236d07a9b1b926d64701723838d2cd954d9ca (patch) | |
tree | 76899c812dd75abfb725197ee1d939eb745f0de3 | |
parent | 46153814799e420ba8022557b3fa64d1079a3e72 (diff) |
-fix doxygen
m--------- | contrib/gana | 0 | ||||
m--------- | contrib/wallet-core | 0 | ||||
-rw-r--r-- | src/include/taler_crypto_lib.h | 27 |
3 files changed, 14 insertions, 13 deletions
diff --git a/contrib/gana b/contrib/gana -Subproject 898a5d6c244ea66fc83cd8936db903aad14c4f1 +Subproject 385f602f1434a2d9cc0b4b8b12d1d3376acb405 diff --git a/contrib/wallet-core b/contrib/wallet-core -Subproject 608c1bb0b435eb64420388a1a5809df3d1146bc +Subproject 5934e007f637bd9834a811e67c0a030d7a59f2c diff --git a/src/include/taler_crypto_lib.h b/src/include/taler_crypto_lib.h index a23e4391a..74e88d6d4 100644 --- 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) ) /** |