donau

Donation authority for GNU Taler (experimental)
Log | Files | Refs | Submodules | README | LICENSE

commit 49393f576924e89adff368e5bbc3a9f8458c4f7c
parent f5dcf6938e4fe3dd6c9a08aac0374371b1b206d3
Author: Matyja Lukas Adam <lukas.matyja@students.bfh.ch>
Date:   Mon,  1 Jan 2024 22:49:26 +0100

[testing] remove donau offline part from unified setup script

Diffstat:
Msrc/donau/donau-httpd_keys.c | 35++++-------------------------------
Msrc/testing/donau-unified-setup.sh | 2+-
2 files changed, 5 insertions(+), 32 deletions(-)

diff --git a/src/donau/donau-httpd_keys.c b/src/donau/donau-httpd_keys.c @@ -49,16 +49,17 @@ struct HelperDenomination { + // maybe change to year unsigned int later -> many associated changes /** * When will the helper start to use this key for signing? */ - //struct GNUNET_TIME_Timestamp start_time; + struct GNUNET_TIME_Timestamp start_time; /** * For how long will the helper allow signing? 0 if * the key was revoked or purged. */ - //struct GNUNET_TIME_Relative validity_duration; + struct GNUNET_TIME_Relative validity_duration; /** * Hash of the full denomination key. @@ -103,34 +104,6 @@ struct HelperDenomination /** - * Signatures of an auditor over a denomination key of this donau. - */ -// struct DH_AuditorSignature -// { -// /** -// * We store the signatures in a DLL. -// */ -// struct DH_AuditorSignature *prev; - -// /** -// * We store the signatures in a DLL. -// */ -// struct DH_AuditorSignature *next; - -// /** -// * A signature from the auditor. -// */ -// struct TALER_AuditorSignatureP asig; - -// /** -// * Public key of the auditor. -// */ -// struct TALER_AuditorPublicKeyP apub; - -// }; - - -/** * Information about a signing key on offer by the esign helper. */ struct HelperSignkey @@ -202,7 +175,7 @@ struct HelperState * entries. Based on the fact that a `struct GNUNET_PeerIdentity` is also * an EdDSA public key. */ - struct GNUNET_CONTAINER_MultiPeerMap *esign_keys; + struct GNUNET_CONTAINER_MultiPeerMap *esign_keys; //abuse fall hash für public keys, key integer, key hash, key public key }; diff --git a/src/testing/donau-unified-setup.sh b/src/testing/donau-unified-setup.sh @@ -470,7 +470,7 @@ then else DONAU_URL="http://localhost:${DONAU_PORT}/" fi - taler-donau-dbinit -c "$CONF" --reset + donau-dbinit -c "$CONF" --reset $USE_VALGRIND donau-secmod-eddsa -c "$CONF" -L "$LOGLEVEL" 2> donau-secmod-eddsa.log & $USE_VALGRIND donau-secmod-rsa -c "$CONF" -L "$LOGLEVEL" 2> donau-secmod-rsa.log & $USE_VALGRIND donau-secmod-cs -c "$CONF" -L "$LOGLEVEL" 2> donau-secmod-cs.log &