diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-05-30 18:35:02 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-05-30 18:35:02 +0000 |
commit | 93fba12ad8159dc6b683f9e7ce9f0528a11047f5 (patch) | |
tree | 73b1bd212c6c5a32adb924d208d8a315b606e854 /src/util/crypto_rsa.c | |
parent | cfd880578bd21f9adedba557291c903d325e93cd (diff) |
make libextractor actually optional, both for GNUnet and GNUnet-taler builds
Diffstat (limited to 'src/util/crypto_rsa.c')
-rw-r--r-- | src/util/crypto_rsa.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/util/crypto_rsa.c b/src/util/crypto_rsa.c index 0b21b40b4d..b8e29146f0 100644 --- a/src/util/crypto_rsa.c +++ b/src/util/crypto_rsa.c @@ -22,7 +22,7 @@ */ #include "platform.h" #include <gcrypt.h> -#include "gnunet_util_lib.h" +#include "gnunet_crypto_lib.h" #define LOG(kind,...) GNUNET_log_from (kind, "util", __VA_ARGS__) @@ -413,7 +413,7 @@ GNUNET_CRYPTO_rsa_blinding_key_create (unsigned int len) /** * Compare the values of two blinding keys. - * + * * @param b1 one key * @param b2 the other key * @return 0 if the two are equal @@ -443,7 +443,7 @@ GNUNET_CRYPTO_rsa_signature_cmp (struct GNUNET_CRYPTO_rsa_Signature *s1, size_t z1; size_t z2; int ret; - + z1 = GNUNET_CRYPTO_rsa_signature_encode (s1, &b1); z2 = GNUNET_CRYPTO_rsa_signature_encode (s2, @@ -476,7 +476,7 @@ GNUNET_CRYPTO_rsa_public_key_cmp (struct GNUNET_CRYPTO_rsa_PublicKey *p1, size_t z1; size_t z2; int ret; - + z1 = GNUNET_CRYPTO_rsa_public_key_encode (p1, &b1); z2 = GNUNET_CRYPTO_rsa_public_key_encode (p2, |