diff options
author | Christian Grothoff <christian@grothoff.org> | 2020-04-08 18:18:20 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2020-04-08 18:18:20 +0200 |
commit | 50bc862a684f8c5d4e3ece2712322bf078fe604f (patch) | |
tree | 54d4facce006a8437c58e64e7f2106a3487cba83 /src/lib/exchange_api_common.c | |
parent | b22ec7570e830a3f71ed7c33b23879b2c3385387 (diff) |
adapt to new GNUnet sign API (#6164)
Diffstat (limited to 'src/lib/exchange_api_common.c')
-rw-r--r-- | src/lib/exchange_api_common.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/exchange_api_common.c b/src/lib/exchange_api_common.c index af77d29e5..d441807aa 100644 --- a/src/lib/exchange_api_common.c +++ b/src/lib/exchange_api_common.c @@ -177,7 +177,7 @@ TALER_EXCHANGE_parse_reserve_history ( /* Check that the signature is a valid withdraw request */ if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_RESERVE_WITHDRAW, - &withdraw_purpose.purpose, + &withdraw_purpose, &sig.eddsa_signature, &reserve_pub->eddsa_pub)) { @@ -294,7 +294,7 @@ TALER_EXCHANGE_parse_reserve_history ( if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify ( TALER_SIGNATURE_EXCHANGE_CONFIRM_RECOUP, - &pc.purpose, + &pc, &rh->details.recoup_details.exchange_sig.eddsa_signature, &rh->details.recoup_details.exchange_pub.eddsa_pub)) { @@ -371,7 +371,7 @@ TALER_EXCHANGE_parse_reserve_history ( if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify ( TALER_SIGNATURE_EXCHANGE_RESERVE_CLOSED, - &rcc.purpose, + &rcc, &rh->details.close_details.exchange_sig.eddsa_signature, &rh->details.close_details.exchange_pub.eddsa_pub)) { @@ -551,7 +551,7 @@ TALER_EXCHANGE_verify_coin_history ( dr.coin_pub = *coin_pub; if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_COIN_DEPOSIT, - &dr.purpose, + &dr, &sig.eddsa_signature, &coin_pub->eddsa_pub)) { @@ -606,7 +606,7 @@ TALER_EXCHANGE_verify_coin_history ( rm.coin_pub = *coin_pub; if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_COIN_MELT, - &rm.purpose, + &rm, &sig.eddsa_signature, &coin_pub->eddsa_pub)) { @@ -665,7 +665,7 @@ TALER_EXCHANGE_verify_coin_history ( &amount); if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_MERCHANT_REFUND, - &rr.purpose, + &rr, &sig.eddsa_sig, &rr.merchant.eddsa_pub)) { @@ -731,7 +731,7 @@ TALER_EXCHANGE_verify_coin_history ( &amount); if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_EXCHANGE_CONFIRM_RECOUP, - &pc.purpose, + &pc, &exchange_sig.eddsa_signature, &exchange_pub.eddsa_pub)) { |