aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/include')
-rw-r--r--src/include/gnunet_crypto_lib.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/gnunet_crypto_lib.h b/src/include/gnunet_crypto_lib.h
index 437a1283f..d11c6b58c 100644
--- a/src/include/gnunet_crypto_lib.h
+++ b/src/include/gnunet_crypto_lib.h
@@ -2160,8 +2160,8 @@ GNUNET_CRYPTO_rsa_public_key_dup (const struct GNUNET_CRYPTO_RsaPublicKey *key);
2160 * @return 0 if the two are equal 2160 * @return 0 if the two are equal
2161 */ 2161 */
2162int 2162int
2163GNUNET_CRYPTO_rsa_signature_cmp (struct GNUNET_CRYPTO_RsaSignature *s1, 2163GNUNET_CRYPTO_rsa_signature_cmp (const struct GNUNET_CRYPTO_RsaSignature *s1,
2164 struct GNUNET_CRYPTO_RsaSignature *s2); 2164 const struct GNUNET_CRYPTO_RsaSignature *s2);
2165 2165
2166/** 2166/**
2167 * Compare the values of two private keys. 2167 * Compare the values of two private keys.
@@ -2171,8 +2171,8 @@ GNUNET_CRYPTO_rsa_signature_cmp (struct GNUNET_CRYPTO_RsaSignature *s1,
2171 * @return 0 if the two are equal 2171 * @return 0 if the two are equal
2172 */ 2172 */
2173int 2173int
2174GNUNET_CRYPTO_rsa_private_key_cmp (struct GNUNET_CRYPTO_RsaPrivateKey *p1, 2174GNUNET_CRYPTO_rsa_private_key_cmp (const struct GNUNET_CRYPTO_RsaPrivateKey *p1,
2175 struct GNUNET_CRYPTO_RsaPrivateKey *p2); 2175 const struct GNUNET_CRYPTO_RsaPrivateKey *p2);
2176 2176
2177 2177
2178/** 2178/**
@@ -2183,8 +2183,8 @@ GNUNET_CRYPTO_rsa_private_key_cmp (struct GNUNET_CRYPTO_RsaPrivateKey *p1,
2183 * @return 0 if the two are equal 2183 * @return 0 if the two are equal
2184 */ 2184 */
2185int 2185int
2186GNUNET_CRYPTO_rsa_public_key_cmp (struct GNUNET_CRYPTO_RsaPublicKey *p1, 2186GNUNET_CRYPTO_rsa_public_key_cmp (const struct GNUNET_CRYPTO_RsaPublicKey *p1,
2187 struct GNUNET_CRYPTO_RsaPublicKey *p2); 2187 const struct GNUNET_CRYPTO_RsaPublicKey *p2);
2188 2188
2189 2189
2190/** 2190/**