exchange

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

commit ce8272446eebebb73cbab8ab4e388a2ec7e164fd
parent e4e8fe6c7c57305e3d2118b81c186ded6c6b1f3c
Author: Christian Grothoff <christian@grothoff.org>
Date:   Mon,  9 Mar 2015 13:07:27 +0100

actually include purpose payload in sig

Diffstat:
Msrc/mint/taler-mint-httpd_responses.c | 1-
Msrc/util/json.c | 8++++++++
2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/src/mint/taler-mint-httpd_responses.c b/src/mint/taler-mint-httpd_responses.c @@ -574,7 +574,6 @@ TALER_MINT_reply_withdraw_sign_success (struct MHD_Connection *connection, char *sig_buf; int ret; - /* FIXME: use TALER_JSON_from_eddsa_sig here instead!? */ sig_buf_size = GNUNET_CRYPTO_rsa_signature_encode (collectable->sig, &sig_buf); sig_json = TALER_JSON_from_data (sig_buf, diff --git a/src/util/json.c b/src/util/json.c @@ -104,6 +104,10 @@ TALER_JSON_from_eddsa_sig (const struct GNUNET_CRYPTO_EccSignaturePurpose *purpo el = json_integer ((json_int_t) ntohl (purpose->purpose)); json_object_set_new (root, "purpose", el); + el = TALER_JSON_from_data (purpose, + ntohl (purpose->size)); + json_object_set_new (root, "eddsa-val", el); + el = TALER_JSON_from_data (signature, sizeof (struct GNUNET_CRYPTO_EddsaSignature)); json_object_set_new (root, "eddsa-sig", el); @@ -134,6 +138,10 @@ TALER_JSON_from_ecdsa_sig (const struct GNUNET_CRYPTO_EccSignaturePurpose *purpo el = json_integer ((json_int_t) ntohl (purpose->purpose)); json_object_set_new (root, "purpose", el); + el = TALER_JSON_from_data (purpose, + ntohl (purpose->size)); + json_object_set_new (root, "ecdsa-val", el); + el = TALER_JSON_from_data (signature, sizeof (struct GNUNET_CRYPTO_EddsaSignature)); json_object_set_new (root, "ecdsa-sig", el);