diff options
Diffstat (limited to 'src/auditor')
-rw-r--r-- | src/auditor/taler-auditor-httpd_deposit-confirmation.c | 4 | ||||
-rw-r--r-- | src/auditor/taler-auditor-sign.c | 7 | ||||
-rw-r--r-- | src/auditor/taler-helper-auditor-aggregation.c | 2 | ||||
-rw-r--r-- | src/auditor/taler-helper-auditor-coins.c | 10 | ||||
-rw-r--r-- | src/auditor/taler-helper-auditor-reserves.c | 6 |
5 files changed, 14 insertions, 15 deletions
diff --git a/src/auditor/taler-auditor-httpd_deposit-confirmation.c b/src/auditor/taler-auditor-httpd_deposit-confirmation.c index 45be222af..fd48ff93b 100644 --- a/src/auditor/taler-auditor-httpd_deposit-confirmation.c +++ b/src/auditor/taler-auditor-httpd_deposit-confirmation.c @@ -112,7 +112,7 @@ verify_and_execute_deposit_confirmation ( /* Not in cache, need to verify the signature, persist it, and possibly cache it */ if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_MASTER_SIGNING_KEY_VALIDITY, - &skv.purpose, + &skv, &es->master_sig.eddsa_signature, &es->master_public_key.eddsa_pub)) { @@ -165,7 +165,7 @@ verify_and_execute_deposit_confirmation ( &dc->amount_without_fee); if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_EXCHANGE_CONFIRM_DEPOSIT, - &dcs.purpose, + &dcs, &dc->exchange_sig.eddsa_signature, &dc->exchange_pub.eddsa_pub)) { diff --git a/src/auditor/taler-auditor-sign.c b/src/auditor/taler-auditor-sign.c index 62f565907..e8491fabe 100644 --- a/src/auditor/taler-auditor-sign.c +++ b/src/auditor/taler-auditor-sign.c @@ -350,10 +350,9 @@ main (int argc, kv.denom_hash = dk->denom_hash; /* Finally sign ... */ - GNUNET_assert (GNUNET_OK == - GNUNET_CRYPTO_eddsa_sign (eddsa_priv, - &kv.purpose, - &sigs[i].eddsa_sig)); + GNUNET_CRYPTO_eddsa_sign (eddsa_priv, + &kv, + &sigs[i].eddsa_sig); } if (NULL == output_file) diff --git a/src/auditor/taler-helper-auditor-aggregation.c b/src/auditor/taler-helper-auditor-aggregation.c index 190b7260e..09376a799 100644 --- a/src/auditor/taler-helper-auditor-aggregation.c +++ b/src/auditor/taler-helper-auditor-aggregation.c @@ -1028,7 +1028,7 @@ get_wire_fee (struct AggregationContext *ac, &wfi->closing_fee); if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_MASTER_WIRE_FEES, - &wf.purpose, + &wf, &master_sig.eddsa_signature, &TALER_ARL_master_pub.eddsa_pub)) { diff --git a/src/auditor/taler-helper-auditor-coins.c b/src/auditor/taler-helper-auditor-coins.c index fb50c8dbf..8acc874c9 100644 --- a/src/auditor/taler-helper-auditor-coins.c +++ b/src/auditor/taler-helper-auditor-coins.c @@ -743,7 +743,7 @@ init_denomination (const struct GNUNET_HashCode *denom_hash, if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify ( TALER_SIGNATURE_MASTER_DENOMINATION_KEY_REVOKED, - &rm.purpose, + &rm, &msig.eddsa_signature, &TALER_ARL_master_pub.eddsa_pub)) { @@ -1312,7 +1312,7 @@ refresh_session_cb (void *cls, amount_with_fee); if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_COIN_MELT, - &rmc.purpose, + &rmc, &coin_sig->eddsa_signature, &coin_pub->eddsa_pub)) { @@ -1679,7 +1679,7 @@ deposit_cb (void *cls, auditor performance! */ if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_COIN_DEPOSIT, - &dr.purpose, + &dr, &coin_sig->eddsa_signature, &coin_pub->eddsa_pub)) { @@ -1850,7 +1850,7 @@ refund_cb (void *cls, amount_with_fee); if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_MERCHANT_REFUND, - &rr.purpose, + &rr, &merchant_sig->eddsa_sig, &merchant_pub->eddsa_pub)) { @@ -2017,7 +2017,7 @@ check_recoup (struct CoinContext *cc, if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_COIN_RECOUP, - &pr.purpose, + &pr, &coin_sig->eddsa_signature, &coin->coin_pub.eddsa_pub)) { diff --git a/src/auditor/taler-helper-auditor-reserves.c b/src/auditor/taler-helper-auditor-reserves.c index 4917ef0a1..76713192f 100644 --- a/src/auditor/taler-helper-auditor-reserves.c +++ b/src/auditor/taler-helper-auditor-reserves.c @@ -559,7 +559,7 @@ handle_reserve_out (void *cls, amount_with_fee); if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_RESERVE_WITHDRAW, - &wsrd.purpose, + &wsrd, &reserve_sig->eddsa_signature, &reserve_pub->eddsa_pub)) { @@ -686,7 +686,7 @@ handle_recoup_by_reserve ( if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_COIN_RECOUP, - &pr.purpose, + &pr, &coin_sig->eddsa_signature, &coin->coin_pub.eddsa_pub)) { @@ -743,7 +743,7 @@ handle_recoup_by_reserve ( if (GNUNET_OK != GNUNET_CRYPTO_eddsa_verify ( TALER_SIGNATURE_MASTER_DENOMINATION_KEY_REVOKED, - &kr.purpose, + &kr, &msig.eddsa_signature, &TALER_ARL_master_pub.eddsa_pub)) { |