summaryrefslogtreecommitdiff
path: root/src/include/gnunet_pq_lib.h
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/include/gnunet_pq_lib.h
parent60de5f48cbfc3868570284e91415ca7e06c390e1 (diff)
downloadgnunet-1733de7305720882b8745e82b51b6ff47c10099e.tar.gz
gnunet-1733de7305720882b8745e82b51b6ff47c10099e.zip
fixing symbol naming and coding convention issues
Diffstat (limited to 'src/include/gnunet_pq_lib.h')
-rw-r--r--src/include/gnunet_pq_lib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_pq_lib.h b/src/include/gnunet_pq_lib.h
index a7525df7e..39c288f5a 100644
--- a/src/include/gnunet_pq_lib.h
+++ b/src/include/gnunet_pq_lib.h
@@ -118,7 +118,7 @@ GNUNET_PQ_query_param_fixed_size (const void *ptr,
118 * @param x the query parameter to pass. 118 * @param x the query parameter to pass.
119 */ 119 */
120struct GNUNET_PQ_QueryParam 120struct GNUNET_PQ_QueryParam
121GNUNET_PQ_query_param_rsa_public_key (const struct GNUNET_CRYPTO_rsa_PublicKey *x); 121GNUNET_PQ_query_param_rsa_public_key (const struct GNUNET_CRYPTO_RsaPublicKey *x);
122 122
123 123
124/** 124/**
@@ -128,7 +128,7 @@ GNUNET_PQ_query_param_rsa_public_key (const struct GNUNET_CRYPTO_rsa_PublicKey *
128 * @param x the query parameter to pass 128 * @param x the query parameter to pass
129 */ 129 */
130struct GNUNET_PQ_QueryParam 130struct GNUNET_PQ_QueryParam
131GNUNET_PQ_query_param_rsa_signature (const struct GNUNET_CRYPTO_rsa_Signature *x); 131GNUNET_PQ_query_param_rsa_signature (const struct GNUNET_CRYPTO_RsaSignature *x);
132 132
133 133
134/** 134/**
@@ -330,7 +330,7 @@ GNUNET_PQ_result_spec_variable_size (const char *name,
330 */ 330 */
331struct GNUNET_PQ_ResultSpec 331struct GNUNET_PQ_ResultSpec
332GNUNET_PQ_result_spec_rsa_public_key (const char *name, 332GNUNET_PQ_result_spec_rsa_public_key (const char *name,
333 struct GNUNET_CRYPTO_rsa_PublicKey **rsa); 333 struct GNUNET_CRYPTO_RsaPublicKey **rsa);
334 334
335 335
336/** 336/**
@@ -342,7 +342,7 @@ GNUNET_PQ_result_spec_rsa_public_key (const char *name,
342 */ 342 */
343struct GNUNET_PQ_ResultSpec 343struct GNUNET_PQ_ResultSpec
344GNUNET_PQ_result_spec_rsa_signature (const char *name, 344GNUNET_PQ_result_spec_rsa_signature (const char *name,
345 struct GNUNET_CRYPTO_rsa_Signature **sig); 345 struct GNUNET_CRYPTO_RsaSignature **sig);
346 346
347 347
348/** 348/**