exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 77dec74367f3c9b201972197135ec338d32713d1
parent 079268ebddc6a5b0662d4481306d219e5e590dc7
Author: Christian Blättler <blatc2@bfh.ch>
Date:   Mon,  6 May 2024 21:09:57 +0200

fix typo

Diffstat:
Msrc/include/taler_crypto_lib.h | 2+-
Msrc/util/tokens.c | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/include/taler_crypto_lib.h b/src/include/taler_crypto_lib.h @@ -2445,7 +2445,7 @@ TALER_token_use_blinding_secret_create ( * @return singleton to use for RSA blinding */ const struct TALER_TokenUseMerchantValues * -TALER_token_bling_input_rsa_singleton (); +TALER_token_blind_input_rsa_singleton (); /** diff --git a/src/util/tokens.c b/src/util/tokens.c @@ -148,7 +148,7 @@ TALER_token_use_blinding_secret_create ( const struct TALER_TokenUseMerchantValues * -TALER_token_bling_input_rsa_singleton () +TALER_token_blind_input_rsa_singleton () { static struct GNUNET_CRYPTO_BlindingInputValues bi = { .cipher = GNUNET_CRYPTO_BSA_RSA @@ -164,7 +164,7 @@ void TALER_token_blind_input_copy (struct TALER_TokenUseMerchantValues *bi_dst, const struct TALER_TokenUseMerchantValues *bi_src) { - if (bi_src == TALER_token_bling_input_rsa_singleton ()) + if (bi_src == TALER_token_blind_input_rsa_singleton ()) { *bi_dst = *bi_src; return;