aboutsummaryrefslogtreecommitdiff
path: root/src/escrow/escrow_plugin_helper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/escrow/escrow_plugin_helper.h')
-rw-r--r--src/escrow/escrow_plugin_helper.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/escrow/escrow_plugin_helper.h b/src/escrow/escrow_plugin_helper.h
index dd03522fe..f2a54eb6b 100644
--- a/src/escrow/escrow_plugin_helper.h
+++ b/src/escrow/escrow_plugin_helper.h
@@ -106,28 +106,3 @@ ESCROW_update_escrow_status (struct GNUNET_ESCROW_Handle *h,
106struct GNUNET_ESCROW_Status * 106struct GNUNET_ESCROW_Status *
107ESCROW_get_escrow_status (struct GNUNET_ESCROW_Handle *h, 107ESCROW_get_escrow_status (struct GNUNET_ESCROW_Handle *h,
108 struct GNUNET_IDENTITY_Ego *ego); 108 struct GNUNET_IDENTITY_Ego *ego);
109
110/**
111 * Deserialize an escrow anchor string into a GNUNET_ESCROW_Anchor struct
112 *
113 * @param anchorString the encoded escrow anchor string
114 * @param method the escrow plugin calling this function
115 *
116 * @return the deserialized data packed into a GNUNET_ESCROW_Anchor struct,
117 * NULL if we failed to parse the string
118 */
119struct GNUNET_ESCROW_Anchor *
120ESCROW_anchor_string_to_data (char *anchorString,
121 enum GNUNET_ESCROW_Key_Escrow_Method method);
122
123/**
124 * Serialize an escrow anchor struct into a string
125 *
126 * @param escrowAnchor the escrow anchor struct
127 * @param method the escrow plugin calling this function
128 *
129 * @return the encoded escrow anchor string
130 */
131char *
132ESCROW_anchor_data_to_string (struct GNUNET_ESCROW_Anchor *escrowAnchor,
133 enum GNUNET_ESCROW_Key_Escrow_Method method);