From 6f0432ed839d1f5a7a1e880f492ce162073b680b Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sat, 14 Aug 2021 16:03:02 +0200 Subject: -first rough sketch for IBAN authorization plugin" --- src/authorization/iban.h | 58 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 src/authorization/iban.h (limited to 'src/authorization/iban.h') diff --git a/src/authorization/iban.h b/src/authorization/iban.h new file mode 100644 index 0000000..c95c00d --- /dev/null +++ b/src/authorization/iban.h @@ -0,0 +1,58 @@ +/* + This file is part of Anastasis + Copyright (C) 2021 Anastasis SARL + + Anastasis is free software; you can redistribute it and/or modify it under the + terms of the GNU Lesser General Public License as published by the Free Software + Foundation; either version 3, or (at your option) any later version. + + Anastasis is distributed in the hope that it will be useful, but WITHOUT ANY + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR + A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License along with + Anastasis; see the file COPYING.GPL. If not, see +*/ +/** + * @file iban.h + * @brief data structures for wire transfer notification + * @author Christian Grothoff + */ +#include "platform.h" +#include + +#ifndef IBAN_H +#define IBAN_H + +GNUNET_NETWORK_STRUCT_BEGIN + +/** + * Structure describing an IBAN event in the database. + */ +struct IbanEventP +{ + /** + * Header of type #TALER_DBEVENT_TYPE_ANASTASIS_AUTH_IBAN_TRANSFER. + */ + struct GNUNET_DB_EventHeaderP header; + + /** + * Zero. + */ + uint32_t reserved GNUNET_PACKED; + + /** + * Code to be included in the wire transfer subject. + */ + uint64_t code GNUNET_PACKED; + + /** + * Hash of the debit account of the transaction. + */ + struct GNUNET_HashCode debit_iban_hash; +}; + + +GNUNET_NETWORK_STRUCT_END + +#endif -- cgit v1.2.3