2015-08-08 20:21:13 +02:00
|
|
|
/*
|
|
|
|
This file is part of TALER
|
2017-11-27 23:42:17 +01:00
|
|
|
Copyright (C) 2015-2017 Taler Systems SA
|
2015-08-08 20:21:13 +02:00
|
|
|
|
|
|
|
TALER is free software; you can redistribute it and/or modify it under the
|
|
|
|
terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; either version 3, or (at your option) any later version.
|
|
|
|
|
|
|
|
TALER is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
2016-07-07 17:55:25 +02:00
|
|
|
TALER; see the file COPYING. If not, see
|
2015-08-08 20:21:13 +02:00
|
|
|
<http://www.gnu.org/licenses/>
|
|
|
|
*/
|
|
|
|
/**
|
2020-01-17 22:13:40 +01:00
|
|
|
* @file lib/exchange_api_common.c
|
2016-03-01 15:35:04 +01:00
|
|
|
* @brief common functions for the exchange API
|
2015-08-08 20:21:13 +02:00
|
|
|
* @author Christian Grothoff
|
|
|
|
*/
|
|
|
|
#include "platform.h"
|
2016-03-19 15:54:21 +01:00
|
|
|
#include "taler_json_lib.h"
|
2016-04-17 17:45:15 +02:00
|
|
|
#include <gnunet/gnunet_curl_lib.h>
|
2016-03-01 15:35:04 +01:00
|
|
|
#include "exchange_api_handle.h"
|
2015-08-08 20:21:13 +02:00
|
|
|
#include "taler_signatures.h"
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2016-03-01 15:35:04 +01:00
|
|
|
* Verify a coins transaction history as returned by the exchange.
|
2015-08-08 20:21:13 +02:00
|
|
|
*
|
2020-01-17 19:54:16 +01:00
|
|
|
* @param dk fee structure for the coin, NULL to skip verifying fees
|
2015-08-08 20:21:13 +02:00
|
|
|
* @param currency expected currency for the coin
|
|
|
|
* @param coin_pub public key of the coin
|
|
|
|
* @param history history of the coin in json encoding
|
|
|
|
* @param[out] total how much of the coin has been spent according to @a history
|
|
|
|
* @return #GNUNET_OK if @a history is valid, #GNUNET_SYSERR if not
|
|
|
|
*/
|
|
|
|
int
|
2020-01-17 19:54:16 +01:00
|
|
|
TALER_EXCHANGE_verify_coin_history (const struct
|
|
|
|
TALER_EXCHANGE_DenomPublicKey *dk,
|
|
|
|
const char *currency,
|
2019-08-25 16:18:24 +02:00
|
|
|
const struct
|
|
|
|
TALER_CoinSpendPublicKeyP *coin_pub,
|
2019-07-28 15:39:28 +02:00
|
|
|
json_t *history,
|
2016-05-06 13:33:20 +02:00
|
|
|
struct TALER_Amount *total)
|
2015-08-08 20:21:13 +02:00
|
|
|
{
|
|
|
|
size_t len;
|
2016-05-06 13:33:20 +02:00
|
|
|
struct TALER_Amount rtotal;
|
2020-01-17 20:02:25 +01:00
|
|
|
struct TALER_Amount fee;
|
2015-08-08 20:21:13 +02:00
|
|
|
|
|
|
|
if (NULL == history)
|
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
len = json_array_size (history);
|
|
|
|
if (0 == len)
|
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-10-06 20:54:42 +02:00
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
total));
|
|
|
|
GNUNET_assert (GNUNET_OK ==
|
|
|
|
TALER_amount_get_zero (currency,
|
|
|
|
&rtotal));
|
2019-08-25 16:18:24 +02:00
|
|
|
for (size_t off = 0; off<len; off++)
|
2015-08-08 20:21:13 +02:00
|
|
|
{
|
2019-06-18 13:20:43 +02:00
|
|
|
int add;
|
2015-08-08 20:21:13 +02:00
|
|
|
json_t *transaction;
|
|
|
|
struct TALER_Amount amount;
|
2015-11-11 14:44:08 +01:00
|
|
|
const char *type;
|
2017-04-03 22:45:48 +02:00
|
|
|
struct GNUNET_JSON_Specification spec_glob[] = {
|
2016-03-19 15:54:21 +01:00
|
|
|
TALER_JSON_spec_amount ("amount",
|
2017-04-03 22:45:48 +02:00
|
|
|
&amount),
|
2016-03-19 15:54:21 +01:00
|
|
|
GNUNET_JSON_spec_string ("type",
|
2017-04-03 22:45:48 +02:00
|
|
|
&type),
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_JSON_spec_end ()
|
2015-08-08 20:21:13 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
transaction = json_array_get (history,
|
|
|
|
off);
|
|
|
|
if (GNUNET_OK !=
|
2016-03-19 15:54:21 +01:00
|
|
|
GNUNET_JSON_parse (transaction,
|
2017-04-03 22:45:48 +02:00
|
|
|
spec_glob,
|
2016-03-19 15:54:21 +01:00
|
|
|
NULL, NULL))
|
2015-08-08 20:21:13 +02:00
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2016-05-06 13:33:20 +02:00
|
|
|
add = GNUNET_SYSERR;
|
2015-11-11 14:44:08 +01:00
|
|
|
if (0 == strcasecmp (type,
|
|
|
|
"DEPOSIT"))
|
2015-08-08 20:21:13 +02:00
|
|
|
{
|
2017-04-03 22:45:48 +02:00
|
|
|
struct TALER_DepositRequestPS dr;
|
|
|
|
struct TALER_CoinSpendSignatureP sig;
|
|
|
|
struct GNUNET_JSON_Specification spec[] = {
|
2017-04-18 21:05:27 +02:00
|
|
|
GNUNET_JSON_spec_fixed_auto ("coin_sig",
|
2017-04-03 22:45:48 +02:00
|
|
|
&sig),
|
2017-05-29 01:15:41 +02:00
|
|
|
GNUNET_JSON_spec_fixed_auto ("h_contract_terms",
|
|
|
|
&dr.h_contract_terms),
|
2017-04-18 21:05:27 +02:00
|
|
|
GNUNET_JSON_spec_fixed_auto ("h_wire",
|
|
|
|
&dr.h_wire),
|
|
|
|
GNUNET_JSON_spec_absolute_time_nbo ("timestamp",
|
2019-08-25 16:18:24 +02:00
|
|
|
&dr.timestamp),
|
2017-04-18 21:05:27 +02:00
|
|
|
GNUNET_JSON_spec_absolute_time_nbo ("refund_deadline",
|
2019-08-25 16:18:24 +02:00
|
|
|
&dr.refund_deadline),
|
2017-04-18 21:05:27 +02:00
|
|
|
TALER_JSON_spec_amount_nbo ("deposit_fee",
|
2019-08-25 16:18:24 +02:00
|
|
|
&dr.deposit_fee),
|
2017-04-18 21:05:27 +02:00
|
|
|
GNUNET_JSON_spec_fixed_auto ("merchant_pub",
|
|
|
|
&dr.merchant),
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_JSON_spec_end ()
|
2017-04-03 22:45:48 +02:00
|
|
|
};
|
2015-08-08 20:21:13 +02:00
|
|
|
|
2017-04-03 22:45:48 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_JSON_parse (transaction,
|
|
|
|
spec,
|
|
|
|
NULL, NULL))
|
2015-11-11 14:44:08 +01:00
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
2015-08-08 20:21:13 +02:00
|
|
|
}
|
2017-04-18 21:05:27 +02:00
|
|
|
dr.purpose.size = htonl (sizeof (dr));
|
|
|
|
dr.purpose.purpose = htonl (TALER_SIGNATURE_WALLET_COIN_DEPOSIT);
|
|
|
|
TALER_amount_hton (&dr.amount_with_fee,
|
2019-08-25 16:18:24 +02:00
|
|
|
&amount);
|
2017-04-18 21:05:27 +02:00
|
|
|
dr.coin_pub = *coin_pub;
|
2015-11-11 14:44:08 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_COIN_DEPOSIT,
|
2017-04-03 22:45:48 +02:00
|
|
|
&dr.purpose,
|
2015-11-11 14:44:08 +01:00
|
|
|
&sig.eddsa_signature,
|
|
|
|
&coin_pub->eddsa_pub))
|
2017-04-03 22:45:48 +02:00
|
|
|
{
|
2015-11-11 14:44:08 +01:00
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2020-01-18 13:52:10 +01:00
|
|
|
if (NULL != dk)
|
2020-01-17 20:02:25 +01:00
|
|
|
{
|
2020-01-18 13:52:10 +01:00
|
|
|
/* check that deposit fee matches our expectations from /keys! */
|
|
|
|
TALER_amount_ntoh (&fee,
|
|
|
|
&dr.deposit_fee);
|
|
|
|
if ( (GNUNET_YES !=
|
|
|
|
TALER_amount_cmp_currency (&fee,
|
|
|
|
&dk->fee_deposit)) ||
|
|
|
|
(0 !=
|
|
|
|
TALER_amount_cmp (&fee,
|
|
|
|
&dk->fee_deposit)) )
|
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2020-01-17 20:02:25 +01:00
|
|
|
}
|
2016-05-06 13:33:20 +02:00
|
|
|
add = GNUNET_YES;
|
2015-11-11 14:44:08 +01:00
|
|
|
}
|
|
|
|
else if (0 == strcasecmp (type,
|
|
|
|
"MELT"))
|
|
|
|
{
|
2017-04-03 22:45:48 +02:00
|
|
|
struct TALER_RefreshMeltCoinAffirmationPS rm;
|
|
|
|
struct TALER_CoinSpendSignatureP sig;
|
|
|
|
struct GNUNET_JSON_Specification spec[] = {
|
2017-04-18 21:05:27 +02:00
|
|
|
GNUNET_JSON_spec_fixed_auto ("coin_sig",
|
2017-04-03 22:45:48 +02:00
|
|
|
&sig),
|
2017-11-27 23:42:17 +01:00
|
|
|
GNUNET_JSON_spec_fixed_auto ("rc",
|
|
|
|
&rm.rc),
|
2017-04-18 21:05:27 +02:00
|
|
|
TALER_JSON_spec_amount_nbo ("melt_fee",
|
2019-08-25 16:18:24 +02:00
|
|
|
&rm.melt_fee),
|
|
|
|
GNUNET_JSON_spec_end ()
|
2017-04-03 22:45:48 +02:00
|
|
|
};
|
2015-11-11 14:44:08 +01:00
|
|
|
|
2017-04-03 22:45:48 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_JSON_parse (transaction,
|
|
|
|
spec,
|
|
|
|
NULL, NULL))
|
2015-11-11 14:44:08 +01:00
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-04-18 21:05:27 +02:00
|
|
|
rm.purpose.size = htonl (sizeof (rm));
|
|
|
|
rm.purpose.purpose = htonl (TALER_SIGNATURE_WALLET_COIN_MELT);
|
|
|
|
TALER_amount_hton (&rm.amount_with_fee,
|
2019-08-25 16:18:24 +02:00
|
|
|
&amount);
|
2017-04-18 21:05:27 +02:00
|
|
|
rm.coin_pub = *coin_pub;
|
2015-11-11 14:44:08 +01:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_WALLET_COIN_MELT,
|
2017-04-03 22:45:48 +02:00
|
|
|
&rm.purpose,
|
2015-11-11 14:44:08 +01:00
|
|
|
&sig.eddsa_signature,
|
|
|
|
&coin_pub->eddsa_pub))
|
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2020-01-18 13:52:10 +01:00
|
|
|
if (NULL != dk)
|
2020-01-17 20:02:25 +01:00
|
|
|
{
|
2020-01-18 13:52:10 +01:00
|
|
|
/* check that melt fee matches our expectations from /keys! */
|
|
|
|
TALER_amount_ntoh (&fee,
|
|
|
|
&rm.melt_fee);
|
|
|
|
if ( (GNUNET_YES !=
|
|
|
|
TALER_amount_cmp_currency (&fee,
|
|
|
|
&dk->fee_refresh)) ||
|
|
|
|
(0 !=
|
|
|
|
TALER_amount_cmp (&fee,
|
|
|
|
&dk->fee_refresh)) )
|
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2020-01-17 20:02:25 +01:00
|
|
|
}
|
2016-05-06 13:33:20 +02:00
|
|
|
add = GNUNET_YES;
|
|
|
|
}
|
|
|
|
else if (0 == strcasecmp (type,
|
|
|
|
"REFUND"))
|
|
|
|
{
|
2017-04-03 22:45:48 +02:00
|
|
|
struct TALER_RefundRequestPS rr;
|
2017-04-18 21:05:27 +02:00
|
|
|
struct TALER_MerchantSignatureP sig;
|
2017-04-03 22:45:48 +02:00
|
|
|
struct GNUNET_JSON_Specification spec[] = {
|
2017-04-18 21:05:27 +02:00
|
|
|
GNUNET_JSON_spec_fixed_auto ("merchant_sig",
|
2017-04-03 22:45:48 +02:00
|
|
|
&sig),
|
2017-05-29 01:15:41 +02:00
|
|
|
GNUNET_JSON_spec_fixed_auto ("h_contract_terms",
|
|
|
|
&rr.h_contract_terms),
|
2017-04-18 21:05:27 +02:00
|
|
|
GNUNET_JSON_spec_fixed_auto ("merchant_pub",
|
|
|
|
&rr.merchant),
|
|
|
|
GNUNET_JSON_spec_uint64 ("rtransaction_id",
|
2019-08-25 16:18:24 +02:00
|
|
|
&rr.rtransaction_id),
|
2017-04-18 21:05:27 +02:00
|
|
|
TALER_JSON_spec_amount_nbo ("refund_fee",
|
2019-08-25 16:18:24 +02:00
|
|
|
&rr.refund_fee),
|
|
|
|
GNUNET_JSON_spec_end ()
|
2017-04-03 22:45:48 +02:00
|
|
|
};
|
2016-05-06 13:33:20 +02:00
|
|
|
|
2017-04-03 22:45:48 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_JSON_parse (transaction,
|
|
|
|
spec,
|
|
|
|
NULL, NULL))
|
2016-05-06 13:33:20 +02:00
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-04-18 21:05:27 +02:00
|
|
|
rr.purpose.size = htonl (sizeof (rr));
|
|
|
|
rr.purpose.purpose = htonl (TALER_SIGNATURE_MERCHANT_REFUND);
|
|
|
|
rr.coin_pub = *coin_pub;
|
|
|
|
TALER_amount_hton (&rr.refund_amount,
|
2019-08-25 16:18:24 +02:00
|
|
|
&amount);
|
2016-05-06 13:33:20 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_MERCHANT_REFUND,
|
2017-04-03 22:45:48 +02:00
|
|
|
&rr.purpose,
|
2017-04-18 21:05:27 +02:00
|
|
|
&sig.eddsa_sig,
|
2017-04-03 22:45:48 +02:00
|
|
|
&rr.merchant.eddsa_pub))
|
2016-05-06 13:33:20 +02:00
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-04-03 22:45:48 +02:00
|
|
|
/* NOTE: theoretically, we could also check that the given
|
2017-05-29 01:15:41 +02:00
|
|
|
merchant_pub and h_contract_terms appear in the
|
2016-05-06 13:33:20 +02:00
|
|
|
history under deposits. However, there is really no benefit
|
|
|
|
for the exchange to lie here, so not checking is probably OK
|
|
|
|
(an auditor ought to check, though). Then again, we similarly
|
|
|
|
had no reason to check the merchant's signature (other than a
|
2020-01-17 19:36:20 +01:00
|
|
|
well-formendess check). *///
|
2020-01-17 20:02:25 +01:00
|
|
|
|
|
|
|
/* check that refund fee matches our expectations from /keys! */
|
2020-01-18 13:52:10 +01:00
|
|
|
if (NULL != dk)
|
2020-01-17 20:02:25 +01:00
|
|
|
{
|
2020-01-18 13:52:10 +01:00
|
|
|
TALER_amount_ntoh (&fee,
|
|
|
|
&rr.refund_fee);
|
|
|
|
if ( (GNUNET_YES !=
|
|
|
|
TALER_amount_cmp_currency (&fee,
|
|
|
|
&dk->fee_refund)) ||
|
|
|
|
(0 !=
|
|
|
|
TALER_amount_cmp (&fee,
|
|
|
|
&dk->fee_refund)) )
|
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2020-01-17 20:02:25 +01:00
|
|
|
}
|
2020-01-17 19:36:20 +01:00
|
|
|
add = GNUNET_NO;
|
2015-11-11 14:44:08 +01:00
|
|
|
}
|
2017-04-03 16:49:38 +02:00
|
|
|
else if (0 == strcasecmp (type,
|
|
|
|
"PAYBACK"))
|
|
|
|
{
|
2017-04-03 22:45:48 +02:00
|
|
|
struct TALER_PaybackConfirmationPS pc;
|
|
|
|
struct TALER_ExchangePublicKeyP exchange_pub;
|
|
|
|
struct TALER_ExchangeSignatureP exchange_sig;
|
|
|
|
struct GNUNET_JSON_Specification spec[] = {
|
|
|
|
GNUNET_JSON_spec_fixed_auto ("exchange_sig",
|
|
|
|
&exchange_sig),
|
|
|
|
GNUNET_JSON_spec_fixed_auto ("exchange_pub",
|
|
|
|
&exchange_pub),
|
2017-04-18 21:05:27 +02:00
|
|
|
GNUNET_JSON_spec_fixed_auto ("reserve_pub",
|
|
|
|
&pc.reserve_pub),
|
2019-07-28 15:39:28 +02:00
|
|
|
GNUNET_JSON_spec_absolute_time_nbo ("timestamp",
|
|
|
|
&pc.timestamp),
|
2019-08-25 16:18:24 +02:00
|
|
|
GNUNET_JSON_spec_end ()
|
2017-04-03 22:45:48 +02:00
|
|
|
};
|
2017-04-03 16:49:38 +02:00
|
|
|
|
2017-04-03 22:45:48 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_JSON_parse (transaction,
|
|
|
|
spec,
|
|
|
|
NULL, NULL))
|
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2017-04-18 21:05:27 +02:00
|
|
|
pc.purpose.size = htonl (sizeof (pc));
|
|
|
|
pc.purpose.purpose = htonl (TALER_SIGNATURE_EXCHANGE_CONFIRM_PAYBACK);
|
|
|
|
pc.coin_pub = *coin_pub;
|
|
|
|
TALER_amount_hton (&pc.payback_amount,
|
2019-08-25 16:18:24 +02:00
|
|
|
&amount);
|
2017-04-03 22:45:48 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
GNUNET_CRYPTO_eddsa_verify (TALER_SIGNATURE_EXCHANGE_CONFIRM_PAYBACK,
|
|
|
|
&pc.purpose,
|
|
|
|
&exchange_sig.eddsa_signature,
|
|
|
|
&exchange_pub.eddsa_pub))
|
|
|
|
{
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
add = GNUNET_YES;
|
2017-04-03 16:49:38 +02:00
|
|
|
}
|
2015-11-11 14:44:08 +01:00
|
|
|
else
|
|
|
|
{
|
2015-08-08 20:21:13 +02:00
|
|
|
/* signature not supported, new version on server? */
|
2015-11-11 14:44:08 +01:00
|
|
|
GNUNET_break_op (0);
|
2020-01-18 19:16:33 +01:00
|
|
|
GNUNET_assert (GNUNET_SYSERR == add);
|
2015-08-08 20:21:13 +02:00
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2016-05-06 13:33:20 +02:00
|
|
|
if (GNUNET_YES == add)
|
2015-08-08 20:21:13 +02:00
|
|
|
{
|
2016-05-06 13:33:20 +02:00
|
|
|
/* This amount should be added to the total */
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (total,
|
|
|
|
total,
|
|
|
|
&amount))
|
|
|
|
{
|
|
|
|
/* overflow in history already!? inconceivable! Bad exchange! */
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* This amount should be subtracted from the total.
|
|
|
|
|
|
|
|
However, for the implementation, we first *add* up all of
|
|
|
|
these negative amounts, as we might get refunds before
|
|
|
|
deposits from a semi-evil exchange. Then, at the end, we do
|
2019-10-31 12:59:50 +01:00
|
|
|
the subtraction by calculating "total = total - rtotal" */GNUNET_assert (GNUNET_NO == add);
|
2016-05-06 13:33:20 +02:00
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_add (&rtotal,
|
|
|
|
&rtotal,
|
|
|
|
&amount))
|
|
|
|
{
|
|
|
|
/* overflow in refund history? inconceivable! Bad exchange! */
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
2015-08-08 20:21:13 +02:00
|
|
|
}
|
|
|
|
}
|
2016-05-06 13:33:20 +02:00
|
|
|
|
|
|
|
/* Finally, subtract 'rtotal' from total to handle the subtractions */
|
|
|
|
if (GNUNET_OK !=
|
|
|
|
TALER_amount_subtract (total,
|
|
|
|
total,
|
|
|
|
&rtotal))
|
|
|
|
{
|
|
|
|
/* underflow in history? inconceivable! Bad exchange! */
|
|
|
|
GNUNET_break_op (0);
|
|
|
|
return GNUNET_SYSERR;
|
|
|
|
}
|
|
|
|
|
2015-08-08 20:21:13 +02:00
|
|
|
return GNUNET_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-11-17 16:11:47 +01:00
|
|
|
/**
|
|
|
|
* Obtain meta data about an exchange (online) signing
|
|
|
|
* key.
|
|
|
|
*
|
|
|
|
* @param keys from where to obtain the meta data
|
|
|
|
* @param exchange_pub public key to lookup
|
|
|
|
* @return NULL on error (@a exchange_pub not known)
|
|
|
|
*/
|
|
|
|
const struct TALER_EXCHANGE_SigningPublicKey *
|
2019-08-25 16:18:24 +02:00
|
|
|
TALER_EXCHANGE_get_exchange_signing_key_info (const struct
|
|
|
|
TALER_EXCHANGE_Keys *keys,
|
|
|
|
const struct
|
|
|
|
TALER_ExchangePublicKeyP *
|
|
|
|
exchange_pub)
|
2018-11-17 16:11:47 +01:00
|
|
|
{
|
2019-08-25 16:18:24 +02:00
|
|
|
for (unsigned int i = 0; i<keys->num_sign_keys; i++)
|
2018-11-17 16:11:47 +01:00
|
|
|
{
|
|
|
|
const struct TALER_EXCHANGE_SigningPublicKey *spk;
|
|
|
|
|
|
|
|
spk = &keys->sign_keys[i];
|
2019-04-08 20:48:33 +02:00
|
|
|
if (0 == GNUNET_memcmp (exchange_pub,
|
|
|
|
&spk->key))
|
2018-11-17 16:11:47 +01:00
|
|
|
return spk;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2019-10-31 12:59:50 +01:00
|
|
|
|
2016-03-01 15:35:04 +01:00
|
|
|
/* end of exchange_api_common.c */
|