aboutsummaryrefslogtreecommitdiff
path: root/src/escrow/plugin_escrow_plaintext.c
diff options
context:
space:
mode:
authorjospaeth <spaethj@in.tum.de>2020-08-03 12:40:13 +0200
committerjospaeth <spaethj@in.tum.de>2020-08-03 12:40:13 +0200
commit2822c5af3ef8f29ac2b5727ee3c13c6338852e58 (patch)
treed1bd6c5b6409fb82b4b01cc472860f484cc3232a /src/escrow/plugin_escrow_plaintext.c
parentc44480a40fac3be1c586430c74c69bc0eda9eaf7 (diff)
downloadgnunet-2822c5af3ef8f29ac2b5727ee3c13c6338852e58.tar.gz
gnunet-2822c5af3ef8f29ac2b5727ee3c13c6338852e58.zip
remove renew from the API
Diffstat (limited to 'src/escrow/plugin_escrow_plaintext.c')
-rw-r--r--src/escrow/plugin_escrow_plaintext.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/escrow/plugin_escrow_plaintext.c b/src/escrow/plugin_escrow_plaintext.c
index b260f6190..5267b0916 100644
--- a/src/escrow/plugin_escrow_plaintext.c
+++ b/src/escrow/plugin_escrow_plaintext.c
@@ -137,20 +137,6 @@ start_plaintext_key_escrow (struct GNUNET_ESCROW_Handle *h,
137 137
138 138
139/** 139/**
140 * Renew the plaintext escrow of the key, i.e. simply hand out the key
141 *
142 * @param op the escrow operation
143 * @param escrowAnchor the the escrow anchor returned by the start method
144 */
145void
146renew_plaintext_key_escrow (struct GNUNET_ESCROW_Operation *op,
147 struct GNUNET_ESCROW_Anchor *escrowAnchor)
148{
149 op->cb_renew (escrowAnchor);
150}
151
152
153/**
154 * Verify the plaintext escrow of the key 140 * Verify the plaintext escrow of the key
155 * 141 *
156 * @param h the handle for the escrow component 142 * @param h the handle for the escrow component
@@ -446,7 +432,6 @@ libgnunet_plugin_escrow_plaintext_init (void *cls)
446 432
447 api = GNUNET_new (struct GNUNET_ESCROW_KeyPluginFunctions); 433 api = GNUNET_new (struct GNUNET_ESCROW_KeyPluginFunctions);
448 api->start_key_escrow = &start_plaintext_key_escrow; 434 api->start_key_escrow = &start_plaintext_key_escrow;
449 api->renew_key_escrow = &renew_plaintext_key_escrow;
450 api->verify_key_escrow = &verify_plaintext_key_escrow; 435 api->verify_key_escrow = &verify_plaintext_key_escrow;
451 api->restore_key = &restore_plaintext_key_escrow; 436 api->restore_key = &restore_plaintext_key_escrow;
452 api->anchor_string_to_data = &plaintext_anchor_string_to_data; 437 api->anchor_string_to_data = &plaintext_anchor_string_to_data;