aboutsummaryrefslogtreecommitdiff
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)
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 48f073cda5..8baf0b00f3 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,
size_t *dst_size,
void *dst)
{
- struct GNUNET_CRYPTO_rsa_PublicKey **pk = dst;
+ struct GNUNET_CRYPTO_RsaPublicKey **pk = dst;
size_t len;
const char *res;
int fnum;
@@ -285,7 +285,7 @@ static void
clean_rsa_public_key (void *cls,
void *rd)
{
- struct GNUNET_CRYPTO_rsa_PublicKey **pk = rd;
+ struct GNUNET_CRYPTO_RsaPublicKey **pk = rd;
if (NULL != *pk)
{
@@ -304,7 +304,7 @@ clean_rsa_public_key (void *cls,
*/
struct GNUNET_PQ_ResultSpec
GNUNET_PQ_result_spec_rsa_public_key (const char *name,
- struct GNUNET_CRYPTO_rsa_PublicKey **rsa)
+ struct GNUNET_CRYPTO_RsaPublicKey **rsa)
{
struct GNUNET_PQ_ResultSpec res =
{ &extract_rsa_public_key,
@@ -337,7 +337,7 @@ extract_rsa_signature (void *cls,
size_t *dst_size,
void *dst)
{
- struct GNUNET_CRYPTO_rsa_Signature **sig = dst;
+ struct GNUNET_CRYPTO_RsaSignature **sig = dst;
size_t len;
const char *res;
int fnum;
@@ -389,7 +389,7 @@ static void
clean_rsa_signature (void *cls,
void *rd)
{
- struct GNUNET_CRYPTO_rsa_Signature **sig = rd;
+ struct GNUNET_CRYPTO_RsaSignature **sig = rd;
if (NULL != *sig)
{
@@ -408,7 +408,7 @@ clean_rsa_signature (void *cls,
*/
struct GNUNET_PQ_ResultSpec
GNUNET_PQ_result_spec_rsa_signature (const char *name,
- struct GNUNET_CRYPTO_rsa_Signature **sig)
+ struct GNUNET_CRYPTO_RsaSignature **sig)
{
struct GNUNET_PQ_ResultSpec res =
{ &extract_rsa_signature,