aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorSchanzenbach, Martin <mschanzenbach@posteo.de>2017-10-06 10:14:10 +0200
committerSchanzenbach, Martin <mschanzenbach@posteo.de>2017-10-06 10:14:10 +0200
commit7807374c7247af1d139ff70b4af047c227229a6e (patch)
treeb3cce2927701c84a9f1e558dd395d7cff9170440 /src/include
parentfc76f42d3f8df9fc88648ad052f46c7ddf518879 (diff)
downloadgnunet-7807374c7247af1d139ff70b4af047c227229a6e.tar.gz
gnunet-7807374c7247af1d139ff70b4af047c227229a6e.zip
-do not persist sensitive data
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_identity_provider_plugin.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/include/gnunet_identity_provider_plugin.h b/src/include/gnunet_identity_provider_plugin.h
index 5867a5b80..9e779bde7 100644
--- a/src/include/gnunet_identity_provider_plugin.h
+++ b/src/include/gnunet_identity_provider_plugin.h
@@ -48,11 +48,9 @@ extern "C"
48 * 48 *
49 * @param cls closure 49 * @param cls closure
50 * @param ticket the ticket 50 * @param ticket the ticket
51 * @prarm attrs the attributes
52 */ 51 */
53typedef void (*GNUNET_IDENTITY_PROVIDER_TicketIterator) (void *cls, 52typedef void (*GNUNET_IDENTITY_PROVIDER_TicketIterator) (void *cls,
54 const struct GNUNET_IDENTITY_PROVIDER_Ticket2 *ticket, 53 const struct GNUNET_IDENTITY_PROVIDER_Ticket2 *ticket);
55 const struct GNUNET_IDENTITY_PROVIDER_AttributeList *attrs);
56 54
57 55
58/** 56/**
@@ -71,12 +69,10 @@ struct GNUNET_IDENTITY_PROVIDER_PluginFunctions
71 * 69 *
72 * @param cls closure (internal context for the plugin) 70 * @param cls closure (internal context for the plugin)
73 * @param ticket the ticket to store 71 * @param ticket the ticket to store
74 * @param attrs the attributes shared with the ticket
75 * @return #GNUNET_OK on success, else #GNUNET_SYSERR 72 * @return #GNUNET_OK on success, else #GNUNET_SYSERR
76 */ 73 */
77 int (*store_ticket) (void *cls, 74 int (*store_ticket) (void *cls,
78 const struct GNUNET_IDENTITY_PROVIDER_Ticket2 *ticket, 75 const struct GNUNET_IDENTITY_PROVIDER_Ticket2 *ticket);
79 const struct GNUNET_IDENTITY_PROVIDER_AttributeList *attrs);
80 76
81 /** 77 /**
82 * Delete a ticket from the database. 78 * Delete a ticket from the database.