[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-exchange] branch master updated: fix #6666, bump protocol version
From: |
gnunet |
Subject: |
[taler-exchange] branch master updated: fix #6666, bump protocol version to 9 |
Date: |
Fri, 01 Jan 2021 15:48:48 +0100 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository exchange.
The following commit(s) were added to refs/heads/master by this push:
new 26410a72 fix #6666, bump protocol version to 9
26410a72 is described below
commit 26410a72c20632765d22ee10bbf51934c74d15af
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Fri Jan 1 15:48:43 2021 +0100
fix #6666, bump protocol version to 9
---
src/auditor/taler-auditor-httpd_deposit-confirmation.c | 1 -
src/exchange/taler-exchange-httpd_keys.c | 2 +-
src/include/taler_signatures.h | 6 ------
src/util/offline_signatures.c | 3 ---
4 files changed, 1 insertion(+), 11 deletions(-)
diff --git a/src/auditor/taler-auditor-httpd_deposit-confirmation.c
b/src/auditor/taler-auditor-httpd_deposit-confirmation.c
index 726e4de6..5c1ee9f0 100644
--- a/src/auditor/taler-auditor-httpd_deposit-confirmation.c
+++ b/src/auditor/taler-auditor-httpd_deposit-confirmation.c
@@ -70,7 +70,6 @@ verify_and_execute_deposit_confirmation (
struct TALER_ExchangeSigningKeyValidityPS skv = {
.purpose.purpose = htonl (TALER_SIGNATURE_MASTER_SIGNING_KEY_VALIDITY),
.purpose.size = htonl (sizeof (struct TALER_ExchangeSigningKeyValidityPS)),
- .master_public_key = es->master_public_key,
.start = GNUNET_TIME_absolute_hton (es->ep_start),
.expire = GNUNET_TIME_absolute_hton (es->ep_expire),
.end = GNUNET_TIME_absolute_hton (es->ep_end),
diff --git a/src/exchange/taler-exchange-httpd_keys.c
b/src/exchange/taler-exchange-httpd_keys.c
index ef4b3bf0..b048f1d3 100644
--- a/src/exchange/taler-exchange-httpd_keys.c
+++ b/src/exchange/taler-exchange-httpd_keys.c
@@ -43,7 +43,7 @@
* #TALER_PROTOCOL_CURRENT and #TALER_PROTOCOL_AGE in
* exchange_api_handle.c!
*/
-#define EXCHANGE_PROTOCOL_VERSION "8:0:0"
+#define EXCHANGE_PROTOCOL_VERSION "9:0:0"
/**
diff --git a/src/include/taler_signatures.h b/src/include/taler_signatures.h
index 5f380812..5622c7b6 100644
--- a/src/include/taler_signatures.h
+++ b/src/include/taler_signatures.h
@@ -753,12 +753,6 @@ struct TALER_ExchangeSigningKeyValidityPS
*/
struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
- /**
- * Master public key of the exchange corresponding to @e signature.
- * This is the long-term offline master key of the exchange.
- */
- struct TALER_MasterPublicKeyP master_public_key;
-
/**
* When does this signing key begin to be valid?
*/
diff --git a/src/util/offline_signatures.c b/src/util/offline_signatures.c
index aab46fc7..bd71af8f 100644
--- a/src/util/offline_signatures.c
+++ b/src/util/offline_signatures.c
@@ -213,8 +213,6 @@ TALER_exchange_offline_signkey_validity_sign (
.signkey_pub = *exchange_pub
};
- GNUNET_CRYPTO_eddsa_key_get_public (&master_priv->eddsa_priv,
- &skv.master_public_key.eddsa_pub);
GNUNET_CRYPTO_eddsa_sign (&master_priv->eddsa_priv,
&skv,
&master_sig->eddsa_signature);
@@ -234,7 +232,6 @@ TALER_exchange_offline_signkey_validity_verify (
.purpose.purpose = htonl (
TALER_SIGNATURE_MASTER_SIGNING_KEY_VALIDITY),
.purpose.size = htonl (sizeof (skv)),
- .master_public_key = *master_pub,
.start = GNUNET_TIME_absolute_hton (start_sign),
.expire = GNUNET_TIME_absolute_hton (end_sign),
.end = GNUNET_TIME_absolute_hton (end_legal),
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-exchange] branch master updated: fix #6666, bump protocol version to 9,
gnunet <=