aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Blättler <blatc2@bfh.ch>2024-05-06 21:09:57 +0200
committerChristian Blättler <blatc2@bfh.ch>2024-05-06 21:09:57 +0200
commit77dec74367f3c9b201972197135ec338d32713d1 (patch)
treec8a60c7cd8e96f9ae16c3007073bf4a88d7a619f
parent079268ebddc6a5b0662d4481306d219e5e590dc7 (diff)
downloadexchange-77dec74367f3c9b201972197135ec338d32713d1.tar.xz
fix typo
-rw-r--r--src/include/taler_crypto_lib.h2
-rw-r--r--src/util/tokens.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/include/taler_crypto_lib.h b/src/include/taler_crypto_lib.h
index 0b5af6b9a..a23e4391a 100644
--- 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
index 481eb6d20..5d99c5dfe 100644
--- 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;