aboutsummaryrefslogtreecommitdiff
path: root/src/include/taler_exchangedb_plugin.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-06-23 13:39:18 +0200
committerChristian Grothoff <christian@grothoff.org>2024-07-29 12:18:43 +0200
commit908cb91c95b2fb52b5fa3bc31a6472187b84163b (patch)
tree781caf7a00d70b2d0ae3f730a80e82e74bf496a1 /src/include/taler_exchangedb_plugin.h
parent61f3336601d6fd6fdcf8abfc052902e5404d903e (diff)
-implement GET "/aml/$PUB/attributes/$H_PAYTO"
Diffstat (limited to 'src/include/taler_exchangedb_plugin.h')
-rw-r--r--src/include/taler_exchangedb_plugin.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/taler_exchangedb_plugin.h b/src/include/taler_exchangedb_plugin.h
index 9c60fd231..642958b13 100644
--- a/src/include/taler_exchangedb_plugin.h
+++ b/src/include/taler_exchangedb_plugin.h
@@ -3545,7 +3545,8 @@ typedef void
* @param row_id current row in kyc_attributes table
* @param provider_name which provider collected the data, NULL for user upload
* @param collection_time when were the attributes collected
- * @param attributes the collected attributes
+ * @param enc_attributes_size size of @a enc_attributes
+ * @param enc_attributes the encrypted collected attributes
*/
typedef void
(*TALER_EXCHANGEDB_AmlAttributeCallback)(
@@ -3553,7 +3554,8 @@ typedef void
uint64_t row_id,
const char *provider_name,
struct GNUNET_TIME_Timestamp collection_time,
- const json_t *attributes);
+ size_t enc_attributes_size,
+ const void *enc_attributes);
/**