aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_json_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_json_lib.h
parent60de5f48cbfc3868570284e91415ca7e06c390e1 (diff)
downloadgnunet-1733de7305720882b8745e82b51b6ff47c10099e.tar.gz
gnunet-1733de7305720882b8745e82b51b6ff47c10099e.zip
fixing symbol naming and coding convention issues
Diffstat (limited to 'src/include/gnunet_json_lib.h')
-rw-r--r--src/include/gnunet_json_lib.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/gnunet_json_lib.h b/src/include/gnunet_json_lib.h
index a0a4209d2..15e85c411 100644
--- a/src/include/gnunet_json_lib.h
+++ b/src/include/gnunet_json_lib.h
@@ -281,7 +281,7 @@ GNUNET_JSON_spec_relative_time (const char *name,
281 */ 281 */
282struct GNUNET_JSON_Specification 282struct GNUNET_JSON_Specification
283GNUNET_JSON_spec_rsa_public_key (const char *name, 283GNUNET_JSON_spec_rsa_public_key (const char *name,
284 struct GNUNET_CRYPTO_rsa_PublicKey **pk); 284 struct GNUNET_CRYPTO_RsaPublicKey **pk);
285 285
286 286
287/** 287/**
@@ -292,7 +292,7 @@ GNUNET_JSON_spec_rsa_public_key (const char *name,
292 */ 292 */
293struct GNUNET_JSON_Specification 293struct GNUNET_JSON_Specification
294GNUNET_JSON_spec_rsa_signature (const char *name, 294GNUNET_JSON_spec_rsa_signature (const char *name,
295 struct GNUNET_CRYPTO_rsa_Signature **sig); 295 struct GNUNET_CRYPTO_RsaSignature **sig);
296 296
297 297
298/* ****************** Generic generator interface ******************* */ 298/* ****************** Generic generator interface ******************* */
@@ -338,7 +338,7 @@ GNUNET_JSON_from_time_rel (struct GNUNET_TIME_Relative stamp);
338 * @return corresponding JSON encoding 338 * @return corresponding JSON encoding
339 */ 339 */
340json_t * 340json_t *
341GNUNET_JSON_from_rsa_public_key (const struct GNUNET_CRYPTO_rsa_PublicKey *pk); 341GNUNET_JSON_from_rsa_public_key (const struct GNUNET_CRYPTO_RsaPublicKey *pk);
342 342
343 343
344/** 344/**
@@ -348,7 +348,7 @@ GNUNET_JSON_from_rsa_public_key (const struct GNUNET_CRYPTO_rsa_PublicKey *pk);
348 * @return corresponding JSON encoding 348 * @return corresponding JSON encoding
349 */ 349 */
350json_t * 350json_t *
351GNUNET_JSON_from_rsa_signature (const struct GNUNET_CRYPTO_rsa_Signature *sig); 351GNUNET_JSON_from_rsa_signature (const struct GNUNET_CRYPTO_RsaSignature *sig);
352 352
353 353
354#endif 354#endif