exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 2e6d284e039acdc2fef37ca5b781f1ecee6a548d
parent f676be5c5387d7d712a6fc14d6baf1798c777eaa
Author: Florian Dold <florian.dold@gmail.com>
Date:   Thu, 16 Jan 2020 08:50:40 +0100

DCE

Diffstat:
Msrc/include/taler_json_lib.h | 13-------------
Msrc/json/json_wire.c | 32--------------------------------
2 files changed, 0 insertions(+), 45 deletions(-)

diff --git a/src/include/taler_json_lib.h b/src/include/taler_json_lib.h @@ -155,19 +155,6 @@ TALER_JSON_merchant_wire_signature_hash (const json_t *wire_s, /** - * Compute the hash of the given wire details. The resulting - * hash is what is signed by the master public key. - * - * @param wire_s wire details to hash - * @param hc[out] set to the hash - * @return #GNUNET_OK on success, #GNUNET_SYSERR if @a wire_s is malformed - */ -int -TALER_JSON_exchange_wire_signature_hash (const json_t *wire_s, - struct GNUNET_HashCode *hc); - - -/** * Check the signature in @a wire_s. * * @param wire_s signed wire information of an exchange diff --git a/src/json/json_wire.c b/src/json/json_wire.c @@ -33,38 +33,6 @@ * @return #GNUNET_OK on success, #GNUNET_SYSERR if @a wire_s is malformed */ int -TALER_JSON_exchange_wire_signature_hash (const json_t *wire_s, - struct GNUNET_HashCode *hc) -{ - const char *payto_url; - struct GNUNET_JSON_Specification spec[] = { - GNUNET_JSON_spec_string ("url", &payto_url), - GNUNET_JSON_spec_end () - }; - - if (GNUNET_OK != - GNUNET_JSON_parse (wire_s, - spec, - NULL, NULL)) - { - GNUNET_break_op (0); - return GNUNET_SYSERR; - } - TALER_exchange_wire_signature_hash (payto_url, - hc); - return GNUNET_OK; -} - - -/** - * Compute the hash of the given wire details. The resulting - * hash is what is put into the contract. - * - * @param wire_s wire details to hash - * @param hc[out] set to the hash - * @return #GNUNET_OK on success, #GNUNET_SYSERR if @a wire_s is malformed - */ -int TALER_JSON_merchant_wire_signature_hash (const json_t *wire_s, struct GNUNET_HashCode *hc) {