diff options
author | Christian Grothoff <christian@grothoff.org> | 2016-03-21 13:41:12 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2016-03-21 13:41:12 +0000 |
commit | 1733de7305720882b8745e82b51b6ff47c10099e (patch) | |
tree | df9199b0e8670b089ead17186b191b80629bda8f /src/pq/pq_query_helper.c | |
parent | 60de5f48cbfc3868570284e91415ca7e06c390e1 (diff) |
fixing symbol naming and coding convention issues
Diffstat (limited to 'src/pq/pq_query_helper.c')
-rw-r--r-- | src/pq/pq_query_helper.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pq/pq_query_helper.c b/src/pq/pq_query_helper.c index 13c71446cc..d284822c22 100644 --- a/src/pq/pq_query_helper.c +++ b/src/pq/pq_query_helper.c @@ -265,7 +265,7 @@ qconv_rsa_public_key (void *cls, void *scratch[], unsigned int scratch_length) { - const struct GNUNET_CRYPTO_rsa_PublicKey *rsa = data; + const struct GNUNET_CRYPTO_RsaPublicKey *rsa = data; char *buf; size_t buf_size; @@ -290,7 +290,7 @@ qconv_rsa_public_key (void *cls, * @return array entry for the query parameters to use */ struct GNUNET_PQ_QueryParam -GNUNET_PQ_query_param_rsa_public_key (const struct GNUNET_CRYPTO_rsa_PublicKey *x) +GNUNET_PQ_query_param_rsa_public_key (const struct GNUNET_CRYPTO_RsaPublicKey *x) { struct GNUNET_PQ_QueryParam res = { &qconv_rsa_public_key, NULL, (x), 0, 1 }; @@ -323,7 +323,7 @@ qconv_rsa_signature (void *cls, void *scratch[], unsigned int scratch_length) { - const struct GNUNET_CRYPTO_rsa_Signature *sig = data; + const struct GNUNET_CRYPTO_RsaSignature *sig = data; char *buf; size_t buf_size; @@ -348,7 +348,7 @@ qconv_rsa_signature (void *cls, * @return array entry for the query parameters to use */ struct GNUNET_PQ_QueryParam -GNUNET_PQ_query_param_rsa_signature (const struct GNUNET_CRYPTO_rsa_Signature *x) +GNUNET_PQ_query_param_rsa_signature (const struct GNUNET_CRYPTO_RsaSignature *x) { struct GNUNET_PQ_QueryParam res = { &qconv_rsa_signature, NULL, (x), 0, 1 }; |