diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-10-22 23:15:04 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-10-27 09:23:11 +0200 |
commit | 42bdb5aa6ea955d46a1fe5f8fa20e49e2efd3cb5 (patch) | |
tree | 6a1b120b45eea31a6e75d5ee0a865dff5cb8e276 /src/include/taler_signatures.h | |
parent | fc371ea18bd891791c02d998447d6db0f403da1f (diff) |
-fixing more FTBFS
Diffstat (limited to 'src/include/taler_signatures.h')
-rw-r--r-- | src/include/taler_signatures.h | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/src/include/taler_signatures.h b/src/include/taler_signatures.h index b7279a66c..34d133807 100644 --- a/src/include/taler_signatures.h +++ b/src/include/taler_signatures.h @@ -1178,7 +1178,27 @@ struct TALER_MasterWireDetailsPS struct GNUNET_CRYPTO_EccSignaturePurpose purpose; /** - * Hash over the account holder's payto:// URL and + * Hash over the account holder's payto:// URL. + */ + struct TALER_PaytoHash h_wire_details GNUNET_PACKED; + +}; + + +/** + * @brief Information signed by the exchange's master + * key affirming the IBAN details for the exchange. + */ +struct TALER_MerchantWireDetailsPS +{ + + /** + * Purpose is #TALER_SIGNATURE_MERCHANT_WIRE_DETAILS. + */ + struct GNUNET_CRYPTO_EccSignaturePurpose purpose; + + /** + * Salted hash over the account holder's payto:// URL and * the salt, as done by #TALER_exchange_wire_signature_hash(). */ struct TALER_MerchantWireHash h_wire_details GNUNET_PACKED; |