summaryrefslogtreecommitdiff
path: root/src/pq/pq_result_helper.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-03-21 13:41:12 +0000
committerChristian Grothoff <christian@grothoff.org>2016-03-21 13:41:12 +0000
commit1733de7305720882b8745e82b51b6ff47c10099e (patch)
treedf9199b0e8670b089ead17186b191b80629bda8f /src/pq/pq_result_helper.c
parent60de5f48cbfc3868570284e91415ca7e06c390e1 (diff)
downloadgnunet-1733de7305720882b8745e82b51b6ff47c10099e.tar.gz
gnunet-1733de7305720882b8745e82b51b6ff47c10099e.zip
fixing symbol naming and coding convention issues
Diffstat (limited to 'src/pq/pq_result_helper.c')
-rw-r--r--src/pq/pq_result_helper.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/pq/pq_result_helper.c b/src/pq/pq_result_helper.c
index 48f073cda..8baf0b00f 100644
--- a/src/pq/pq_result_helper.c
+++ b/src/pq/pq_result_helper.c
@@ -233,7 +233,7 @@ extract_rsa_public_key (void *cls,
233 size_t *dst_size, 233 size_t *dst_size,
234 void *dst) 234 void *dst)
235{ 235{
236 struct GNUNET_CRYPTO_rsa_PublicKey **pk = dst; 236 struct GNUNET_CRYPTO_RsaPublicKey **pk = dst;
237 size_t len; 237 size_t len;
238 const char *res; 238 const char *res;
239 int fnum; 239 int fnum;
@@ -285,7 +285,7 @@ static void
285clean_rsa_public_key (void *cls, 285clean_rsa_public_key (void *cls,
286 void *rd) 286 void *rd)
287{ 287{
288 struct GNUNET_CRYPTO_rsa_PublicKey **pk = rd; 288 struct GNUNET_CRYPTO_RsaPublicKey **pk = rd;
289 289
290 if (NULL != *pk) 290 if (NULL != *pk)
291 { 291 {
@@ -304,7 +304,7 @@ clean_rsa_public_key (void *cls,
304 */ 304 */
305struct GNUNET_PQ_ResultSpec 305struct GNUNET_PQ_ResultSpec
306GNUNET_PQ_result_spec_rsa_public_key (const char *name, 306GNUNET_PQ_result_spec_rsa_public_key (const char *name,
307 struct GNUNET_CRYPTO_rsa_PublicKey **rsa) 307 struct GNUNET_CRYPTO_RsaPublicKey **rsa)
308{ 308{
309 struct GNUNET_PQ_ResultSpec res = 309 struct GNUNET_PQ_ResultSpec res =
310 { &extract_rsa_public_key, 310 { &extract_rsa_public_key,
@@ -337,7 +337,7 @@ extract_rsa_signature (void *cls,
337 size_t *dst_size, 337 size_t *dst_size,
338 void *dst) 338 void *dst)
339{ 339{
340 struct GNUNET_CRYPTO_rsa_Signature **sig = dst; 340 struct GNUNET_CRYPTO_RsaSignature **sig = dst;
341 size_t len; 341 size_t len;
342 const char *res; 342 const char *res;
343 int fnum; 343 int fnum;
@@ -389,7 +389,7 @@ static void
389clean_rsa_signature (void *cls, 389clean_rsa_signature (void *cls,
390 void *rd) 390 void *rd)
391{ 391{
392 struct GNUNET_CRYPTO_rsa_Signature **sig = rd; 392 struct GNUNET_CRYPTO_RsaSignature **sig = rd;
393 393
394 if (NULL != *sig) 394 if (NULL != *sig)
395 { 395 {
@@ -408,7 +408,7 @@ clean_rsa_signature (void *cls,
408 */ 408 */
409struct GNUNET_PQ_ResultSpec 409struct GNUNET_PQ_ResultSpec
410GNUNET_PQ_result_spec_rsa_signature (const char *name, 410GNUNET_PQ_result_spec_rsa_signature (const char *name,
411 struct GNUNET_CRYPTO_rsa_Signature **sig) 411 struct GNUNET_CRYPTO_RsaSignature **sig)
412{ 412{
413 struct GNUNET_PQ_ResultSpec res = 413 struct GNUNET_PQ_ResultSpec res =
414 { &extract_rsa_signature, 414 { &extract_rsa_signature,