Skip to content
Snippets Groups Projects
Commit 4989da7d authored by Niels Möller's avatar Niels Möller
Browse files

* rsa-decrypt.c: Make compilation conditional on WITH_PUBLIC_KEY.

* rsa-encrypt.c: Likewise.
* rsa-compat.c: Likewise.

Rev: src/nettle/rsa-compat.c:1.6
parent 6d212271
No related branches found
No related tags found
No related merge requests found
......@@ -23,6 +23,12 @@
* MA 02111-1307, USA.
*/
#if HAVE_CONFIG_H
#include "config.h"
#endif
#if WITH_PUBLIC_KEY
#include "rsa-compat.h"
#include "bignum.h"
......@@ -149,3 +155,4 @@ R_VerifyFinal(R_SIGNATURE_CTX *ctx,
return res;
}
#endif /* WITH_PUBLIC_KEY */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment