summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--api-mint.rst16
-rw-r--r--impl-mint.rst10
2 files changed, 24 insertions, 2 deletions
diff --git a/api-mint.rst b/api-mint.rst
index 78cd7a69..140d3705 100644
--- a/api-mint.rst
+++ b/api-mint.rst
@@ -922,7 +922,6 @@ for signed data (contained in `FIELDS`) with the given purpose. The `size` fiel
};
struct TALER_MintSigningKeyValidityPS {
- struct TALER_MasterSignatureP signature;
signed (purpose = TALER_SIGNATURE_MASTER_SIGNING_KEY_VALIDITY) {
struct TALER_MasterPublicKeyP master_public_key;
struct GNUNET_TIME_AbsoluteNBO start;
@@ -940,7 +939,6 @@ for signed data (contained in `FIELDS`) with the given purpose. The `size` fiel
};
struct TALER_DenominationKeyValidityPS {
- struct TALER_MasterSignatureP signature;
signed (purpose = TALER_SIGNATURE_MASTER_DENOMINATION_KEY_VALIDITY) {
struct TALER_MasterPublicKeyP master;
struct GNUNET_TIME_AbsoluteNBO start;
@@ -954,3 +952,17 @@ for signed data (contained in `FIELDS`) with the given purpose. The `size` fiel
struct GNUNET_HashCode denom_hash;
}
};
+
+ struct TALER_MasterWireSepaDetailsPS {
+ signed (purpose = TALER_SIGNATURE_MASTER_SEPA_DETAILS) {
+ struct GNUNET_HashCode h_sepa_details;
+ }
+ };
+
+ struct TALER_MintWireSupportMethodsPS {
+ signed (purpose = TALER_SIGNATURE_MINT_WIRE_TYPES) {
+ struct GNUNET_HashCode h_wire_types;
+ }
+ };
+
+
diff --git a/impl-mint.rst b/impl-mint.rst
index ed6d627d..8064916b 100644
--- a/impl-mint.rst
+++ b/impl-mint.rst
@@ -14,6 +14,16 @@ The section `[mint]` contains various global options for the mint:
^^^^^^^^^^^^^^^^^^^^^^
+SEPA accounts
+^^^^^^^^^^^^^^^^^^^^^^
+
+The command line tool `taler-mint-sepa` is used to create a file with
+the JSON response to /wire/sepa requests using the mint's offline
+master key. This file needs to be created and added to the configuration under SEPA_RESPONSE_FILE in section [mint-wire-sepa] when the
+`wireformat` option in the configuration file allows SEPA transactions.
+
+
+^^^^^^^^^^^^^^^^^^^^^^
Key Management Options
^^^^^^^^^^^^^^^^^^^^^^