gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-anastasis] branch master updated (b22c838 -> 63bd9bb)


From: gnunet
Subject: [taler-anastasis] branch master updated (b22c838 -> 63bd9bb)
Date: Sat, 12 Dec 2020 08:26:15 +0100

This is an automated email from the git hooks/post-receive script.

dennis-neufeld pushed a change to branch master
in repository anastasis.

    from b22c838  fix invalid read error when calling destructor
     new 8b0367f  fix config
     new 63bd9bb  delete temp configs

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/cli/test_anastasis_reducer.conf   | 12 ++++++++++++
 src/cli/test_anastasis_reducer_1.conf | 11 +++++++++++
 src/cli/test_anastasis_reducer_2.conf | 12 ++++++++++++
 src/cli/test_anastasis_reducer_3.conf | 12 ++++++++++++
 src/cli/test_reducer.conf             |  5 +++++
 src/lib/test_anastasis_api.c          |  2 +-
 src/lib/test_anastasis_api.conf       | 12 ++++++++++++
 7 files changed, 65 insertions(+), 1 deletion(-)

diff --git a/src/cli/test_anastasis_reducer.conf 
b/src/cli/test_anastasis_reducer.conf
index db12c75..48b98ec 100644
--- a/src/cli/test_anastasis_reducer.conf
+++ b/src/cli/test_anastasis_reducer.conf
@@ -153,6 +153,9 @@ URL = http://taler.ezb.eu/
 # This is the important bit: the signing key of the auditor.
 PUBLIC_KEY = 9QXF7XY7E9VPV47B5Z806NDFSX2VJ79SVHHD29QEQ3BG31ANHZ60
 
+# Where do we store the auditor's private key?
+AUDITOR_PRIV_FILE = ${TALER_DATA_HOME}/auditor/offline-keys/auditor.priv
+
 # Which currency is this auditor trusted for?
 CURRENCY = TESTKUDOS
 
@@ -210,6 +213,15 @@ REVOCATION_DIR = ${TALER_DATA_HOME}/exchange/revocations/
 # serve via tcp socket (on PORT)
 SERVE = tcp
 
+
+[exchange-offline]
+
+# Where do we store the offline master private key of the exchange?
+MASTER_PRIV_FILE = ${TALER_DATA_HOME}/exchange/offline-keys/master.priv
+
+# Where do we store the TOFU key material?
+SECM_TOFU_FILE = ${TALER_DATA_HOME}/exchange/offline-keys/master.priv
+
 # END
 ##############################################################
 
diff --git a/src/cli/test_anastasis_reducer_1.conf 
b/src/cli/test_anastasis_reducer_1.conf
index 5270e19..e131852 100644
--- a/src/cli/test_anastasis_reducer_1.conf
+++ b/src/cli/test_anastasis_reducer_1.conf
@@ -139,6 +139,9 @@ BASE_URL = http://the.auditor/
 # will be ignored!
 CURRENCY = TESTKUDOS
 
+# Where do we store the auditor's private key?
+AUDITOR_PRIV_FILE = ${TALER_DATA_HOME}/auditor/offline-keys/auditor.priv
+
 # Auditors must be in sections "auditor-", the rest of the section
 # name could be anything.
 [auditor-ezb]
@@ -210,6 +213,14 @@ REVOCATION_DIR = ${TALER_DATA_HOME}/exchange/revocations/
 # serve via tcp socket (on PORT)
 SERVE = tcp
 
+
+[exchange-offline]
+
+# Where do we store the offline master private key of the exchange?
+MASTER_PRIV_FILE = ${TALER_DATA_HOME}/exchange/offline-keys/master.priv
+
+# Where do we store the TOFU key material?
+SECM_TOFU_FILE = ${TALER_DATA_HOME}/exchange/offline-keys/master.priv
 # END
 ##############################################################
 
diff --git a/src/cli/test_anastasis_reducer_2.conf 
b/src/cli/test_anastasis_reducer_2.conf
index b5182a3..8682451 100644
--- a/src/cli/test_anastasis_reducer_2.conf
+++ b/src/cli/test_anastasis_reducer_2.conf
@@ -139,6 +139,9 @@ BASE_URL = http://the.auditor/
 # will be ignored!
 CURRENCY = TESTKUDOS
 
+# Where do we store the auditor's private key?
+AUDITOR_PRIV_FILE = ${TALER_DATA_HOME}/auditor/offline-keys/auditor.priv
+
 # Auditors must be in sections "auditor-", the rest of the section
 # name could be anything.
 [auditor-ezb]
@@ -210,6 +213,15 @@ REVOCATION_DIR = ${TALER_DATA_HOME}/exchange/revocations/
 # serve via tcp socket (on PORT)
 SERVE = tcp
 
+
+[exchange-offline]
+
+# Where do we store the offline master private key of the exchange?
+MASTER_PRIV_FILE = ${TALER_DATA_HOME}/exchange/offline-keys/master.priv
+
+# Where do we store the TOFU key material?
+SECM_TOFU_FILE = ${TALER_DATA_HOME}/exchange/offline-keys/master.priv
+
 # END
 ##############################################################
 
diff --git a/src/cli/test_anastasis_reducer_3.conf 
b/src/cli/test_anastasis_reducer_3.conf
index 064fc35..215f8e0 100644
--- a/src/cli/test_anastasis_reducer_3.conf
+++ b/src/cli/test_anastasis_reducer_3.conf
@@ -139,6 +139,9 @@ BASE_URL = http://the.auditor/
 # will be ignored!
 CURRENCY = TESTKUDOS
 
+# Where do we store the auditor's private key?
+AUDITOR_PRIV_FILE = ${TALER_DATA_HOME}/auditor/offline-keys/auditor.priv
+
 # Auditors must be in sections "auditor-", the rest of the section
 # name could be anything.
 [auditor-ezb]
@@ -210,6 +213,15 @@ REVOCATION_DIR = ${TALER_DATA_HOME}/exchange/revocations/
 # serve via tcp socket (on PORT)
 SERVE = tcp
 
+
+[exchange-offline]
+
+# Where do we store the offline master private key of the exchange?
+MASTER_PRIV_FILE = ${TALER_DATA_HOME}/exchange/offline-keys/master.priv
+
+# Where do we store the TOFU key material?
+SECM_TOFU_FILE = ${TALER_DATA_HOME}/exchange/offline-keys/master.priv
+
 # END
 ##############################################################
 
diff --git a/src/cli/test_reducer.conf b/src/cli/test_reducer.conf
index 4e25f9e..a001fa7 100644
--- a/src/cli/test_reducer.conf
+++ b/src/cli/test_reducer.conf
@@ -46,6 +46,7 @@ UNIXPATH_MODE = 660
 PORT = 8083
 AUDITOR_URL = http://localhost:8083/
 TINY_AMOUNT = TESTKUDOS:0.01
+AUDITOR_PRIV_FILE = ${TALER_DATA_HOME}/auditor/offline-keys/auditor.priv
 
 [PATHS]
 TALER_HOME = ${PWD}/test_reducer_home/
@@ -90,6 +91,10 @@ WIRE_GATEWAY_AUTH_METHOD = basic
 USERNAME = Exchange
 PASSWORD = x
 
+[exchange-offline]
+MASTER_PRIV_FILE = ${TALER_DATA_HOME}/exchange/offline-keys/master.priv
+SECM_TOFU_FILE = ${TALER_DATA_HOME}/exchange/offline-keys/master.priv
+
 [merchant-account-merchant]
 PAYTO_URI = payto://x-taler-bank/localhost/42
 WIRE_RESPONSE = ${TALER_CONFIG_HOME}/merchant/account-3.json
diff --git a/src/lib/test_anastasis_api.c b/src/lib/test_anastasis_api.c
index 358e019..7bf8599 100644
--- a/src/lib/test_anastasis_api.c
+++ b/src/lib/test_anastasis_api.c
@@ -44,7 +44,7 @@
 /**
  * Exchange base URL.  Could also be taken from config.
  */
-#define EXCHANGE_URL "http:// localhost:8081/"
+#define EXCHANGE_URL "http://localhost:8081/";
 
 
 /**
diff --git a/src/lib/test_anastasis_api.conf b/src/lib/test_anastasis_api.conf
index aa5c555..21ea1a1 100644
--- a/src/lib/test_anastasis_api.conf
+++ b/src/lib/test_anastasis_api.conf
@@ -150,6 +150,9 @@ BASE_URL = http://the.auditor/
 # will be ignored!
 CURRENCY = EUR
 
+# Where do we store the auditor's private key?
+AUDITOR_PRIV_FILE = ${TALER_DATA_HOME}/auditor/offline-keys/auditor.priv
+
 # Auditors must be in sections "auditor-", the rest of the section
 # name could be anything.
 [auditor-ezb]
@@ -221,6 +224,15 @@ REVOCATION_DIR = ${TALER_DATA_HOME}/exchange/revocations/
 # serve via tcp socket (on PORT)
 SERVE = tcp
 
+
+[exchange-offline]
+
+# Where do we store the offline master private key of the exchange?
+MASTER_PRIV_FILE = ${TALER_DATA_HOME}/exchange/offline-keys/master.priv
+
+# Where do we store the TOFU key material?
+SECM_TOFU_FILE = ${TALER_DATA_HOME}/exchange/offline-keys/master.priv
+
 # END
 ##############################################################
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]