summaryrefslogtreecommitdiff
path: root/src/exchangedb/perf_taler_exchangedb_init.c
diff options
context:
space:
mode:
authorJeff Burdges <burdges@gnunet.org>2016-03-20 21:30:10 +0100
committerJeff Burdges <burdges@gnunet.org>2016-03-21 10:57:12 +0100
commit553d6eb23e3ac1001dd6c4e0523cddb88bc5e723 (patch)
tree046e77d41c385e7ddc54cfe4597848dc2023ec4a /src/exchangedb/perf_taler_exchangedb_init.c
parent6f8fa678c1f4672165cd82ddb43ec3546d9552a9 (diff)
downloadexchange-553d6eb23e3ac1001dd6c4e0523cddb88bc5e723.tar.gz
exchange-553d6eb23e3ac1001dd6c4e0523cddb88bc5e723.tar.bz2
exchange-553d6eb23e3ac1001dd6c4e0523cddb88bc5e723.zip
API change in GNUnet crypto for Full Domain Hashing
Diffstat (limited to 'src/exchangedb/perf_taler_exchangedb_init.c')
-rw-r--r--src/exchangedb/perf_taler_exchangedb_init.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/exchangedb/perf_taler_exchangedb_init.c b/src/exchangedb/perf_taler_exchangedb_init.c
index 2e613b3cf..2c2989bd5 100644
--- a/src/exchangedb/perf_taler_exchangedb_init.c
+++ b/src/exchangedb/perf_taler_exchangedb_init.c
@@ -351,9 +351,9 @@ PERF_TALER_EXCHANGEDB_coin_init (
coin->public_info.denom_pub.rsa_public_key =
GNUNET_CRYPTO_rsa_public_key_dup (dki->denom_pub.rsa_public_key);
coin->public_info.denom_sig.rsa_signature =
- GNUNET_CRYPTO_rsa_sign (dki->denom_priv.rsa_private_key,
- &coin->public_info.coin_pub,
- sizeof (struct TALER_CoinSpendPublicKeyP));
+ GNUNET_CRYPTO_rsa_sign_fdh (dki->denom_priv.rsa_private_key,
+ &coin->public_info.coin_pub,
+ sizeof (struct TALER_CoinSpendPublicKeyP));
GNUNET_assert (NULL != coin->public_info.denom_pub.rsa_public_key);
GNUNET_assert (NULL != coin->public_info.denom_sig.rsa_signature);