[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-merchant] 30/51: fix token family key parsing
From: |
gnunet |
Subject: |
[taler-merchant] 30/51: fix token family key parsing |
Date: |
Thu, 13 Jun 2024 17:03:39 +0200 |
This is an automated email from the git hooks/post-receive script.
christian-blaettler pushed a commit to branch master
in repository merchant.
commit 0df606b95f01408d39adc5b0f24a21b6962950d2
Author: Christian Blättler <blatc2@bfh.ch>
AuthorDate: Sat Apr 27 10:11:31 2024 +0200
fix token family key parsing
---
src/backend/taler-merchant-httpd_contract.c | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/src/backend/taler-merchant-httpd_contract.c
b/src/backend/taler-merchant-httpd_contract.c
index 6e98f56f..f05c97d5 100644
--- a/src/backend/taler-merchant-httpd_contract.c
+++ b/src/backend/taler-merchant-httpd_contract.c
@@ -342,23 +342,23 @@ parse_token_families (void *cls,
{
/* TODO: Move this to TALER_JSON_spec_token_issue_key */
int64_t cipher;
- struct TALER_MerchantContractTokenFamilyKey key;
- key = family.keys[i];
+ struct TALER_MerchantContractTokenFamilyKey *key;
+ key = &family.keys[i];
/* TODO: Free when not used anymore */
- key.pub.public_key = GNUNET_new (struct
GNUNET_CRYPTO_BlindSignPublicKey);
+ key->pub.public_key = GNUNET_new (struct
GNUNET_CRYPTO_BlindSignPublicKey);
struct GNUNET_JSON_Specification key_spec[] = {
GNUNET_JSON_spec_fixed_auto ("h_pub",
- &key.pub.public_key->pub_key_hash),
+ &key->pub.public_key->pub_key_hash),
GNUNET_JSON_spec_rsa_public_key ("rsa_pub",
-
&key.pub.public_key->details.rsa_public_key),
+
&key->pub.public_key->details.rsa_public_key),
// GNUNET_JSON_spec_fixed_auto ("cs_pub",
//
&key.pub.public_key->details.cs_public_key)),
GNUNET_JSON_spec_int64 ("cipher",
&cipher),
GNUNET_JSON_spec_timestamp ("valid_after",
- &key.valid_after),
+ &key->valid_after),
GNUNET_JSON_spec_timestamp ("valid_before",
- &key.valid_before),
+ &key->valid_before),
GNUNET_JSON_spec_end()
};
const char *ierror_name;
@@ -381,10 +381,10 @@ parse_token_families (void *cls,
switch (cipher) {
case GNUNET_CRYPTO_BSA_RSA:
- key.pub.public_key->cipher = GNUNET_CRYPTO_BSA_RSA;
+ key->pub.public_key->cipher = GNUNET_CRYPTO_BSA_RSA;
break;
case GNUNET_CRYPTO_BSA_CS:
- key.pub.public_key->cipher = GNUNET_CRYPTO_BSA_CS;
+ key->pub.public_key->cipher = GNUNET_CRYPTO_BSA_CS;
break;
case GNUNET_CRYPTO_BSA_INVALID:
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
- [taler-merchant] 49/51: Merge branch 'master' into tokens-payment, (continued)
- [taler-merchant] 49/51: Merge branch 'master' into tokens-payment, gnunet, 2024/06/13
- [taler-merchant] 50/51: add rounding to token_families in database, gnunet, 2024/06/13
- [taler-merchant] 38/51: store used tokens in database and prevent double using a token, gnunet, 2024/06/13
- [taler-merchant] 36/51: misc, gnunet, 2024/06/13
- [taler-merchant] 51/51: add rounding and remove h_issue, gnunet, 2024/06/13
- [taler-merchant] 32/51: pass wallet data hash to deposit signature validation, gnunet, 2024/06/13
- [taler-merchant] 44/51: store issued tokens in database, gnunet, 2024/06/13
- [taler-merchant] 40/51: check validity period of token families and keys, gnunet, 2024/06/13
- [taler-merchant] 47/51: comment out idempotent pay test for now, gnunet, 2024/06/13
- [taler-merchant] 28/51: set valid_after timestamp to rounded value of matching key, gnunet, 2024/06/13
- [taler-merchant] 30/51: fix token family key parsing,
gnunet <=
- [taler-merchant] 42/51: fix token family validity duration check, gnunet, 2024/06/13
- [taler-merchant] 45/51: fix tests, gnunet, 2024/06/13
- [taler-merchant] 26/51: add pay command to tokens test case (which will currently fail), gnunet, 2024/06/13
- [taler-merchant] 27/51: build tokens array in test command, gnunet, 2024/06/13
- [taler-merchant] 48/51: rename spent_tokens —> used_tokens, gnunet, 2024/06/13
- [taler-merchant] 25/51: extend testing lib to support paying for orders with choices, gnunet, 2024/06/13
- [taler-merchant] 33/51: validate and sign token envelopes, gnunet, 2024/06/13
- [taler-merchant] 37/51: add test for double-spending a token, gnunet, 2024/06/13
- [taler-merchant] 39/51: only allow creation of token families with validity period in the future, gnunet, 2024/06/13
- [taler-merchant] 31/51: work on testing orders with tokens, gnunet, 2024/06/13