aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_crypto_lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gnunet_crypto_lib.h')
-rw-r--r--src/include/gnunet_crypto_lib.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/src/include/gnunet_crypto_lib.h b/src/include/gnunet_crypto_lib.h
index 7aedd58a8..ac50685e2 100644
--- a/src/include/gnunet_crypto_lib.h
+++ b/src/include/gnunet_crypto_lib.h
@@ -1178,6 +1178,10 @@ GNUNET_CRYPTO_ecdsa_key_create_from_file (const char *filename);
1178struct GNUNET_CRYPTO_EddsaPrivateKey * 1178struct GNUNET_CRYPTO_EddsaPrivateKey *
1179GNUNET_CRYPTO_eddsa_key_create_from_file (const char *filename); 1179GNUNET_CRYPTO_eddsa_key_create_from_file (const char *filename);
1180 1180
1181
1182/**
1183 * Forward declaration to simplify #include-structure.
1184 */
1181struct GNUNET_CONFIGURATION_Handle; 1185struct GNUNET_CONFIGURATION_Handle;
1182 1186
1183 1187
@@ -1679,7 +1683,7 @@ GNUNET_CRYPTO_rsa_blinding_key_free (struct GNUNET_CRYPTO_rsa_BlindingKey *bkey)
1679 */ 1683 */
1680size_t 1684size_t
1681GNUNET_CRYPTO_rsa_blinding_key_encode (const struct GNUNET_CRYPTO_rsa_BlindingKey *bkey, 1685GNUNET_CRYPTO_rsa_blinding_key_encode (const struct GNUNET_CRYPTO_rsa_BlindingKey *bkey,
1682 char **buffer); 1686 char **buffer);
1683 1687
1684 1688
1685/** 1689/**
@@ -1692,7 +1696,7 @@ GNUNET_CRYPTO_rsa_blinding_key_encode (const struct GNUNET_CRYPTO_rsa_BlindingKe
1692 */ 1696 */
1693struct GNUNET_CRYPTO_rsa_BlindingKey * 1697struct GNUNET_CRYPTO_rsa_BlindingKey *
1694GNUNET_CRYPTO_rsa_blinding_key_decode (const char *buf, 1698GNUNET_CRYPTO_rsa_blinding_key_decode (const char *buf,
1695 size_t len); 1699 size_t len);
1696 1700
1697 1701
1698/** 1702/**
@@ -1706,9 +1710,9 @@ GNUNET_CRYPTO_rsa_blinding_key_decode (const char *buf,
1706 */ 1710 */
1707size_t 1711size_t
1708GNUNET_CRYPTO_rsa_blind (const struct GNUNET_HashCode *hash, 1712GNUNET_CRYPTO_rsa_blind (const struct GNUNET_HashCode *hash,
1709 struct GNUNET_CRYPTO_rsa_BlindingKey *bkey, 1713 struct GNUNET_CRYPTO_rsa_BlindingKey *bkey,
1710 struct GNUNET_CRYPTO_rsa_PublicKey *pkey, 1714 struct GNUNET_CRYPTO_rsa_PublicKey *pkey,
1711 char **buffer); 1715 char **buffer);
1712 1716
1713 1717
1714/** 1718/**
@@ -1721,8 +1725,8 @@ GNUNET_CRYPTO_rsa_blind (const struct GNUNET_HashCode *hash,
1721 */ 1725 */
1722struct GNUNET_CRYPTO_rsa_Signature * 1726struct GNUNET_CRYPTO_rsa_Signature *
1723GNUNET_CRYPTO_rsa_sign (const struct GNUNET_CRYPTO_rsa_PrivateKey *key, 1727GNUNET_CRYPTO_rsa_sign (const struct GNUNET_CRYPTO_rsa_PrivateKey *key,
1724 const void *msg, 1728 const void *msg,
1725 size_t msg_len); 1729 size_t msg_len);
1726 1730
1727 1731
1728/** 1732/**