From e4fc069da59a8cd7bd604d95b208c20f6c03f20d Mon Sep 17 00:00:00 2001
From: Meilof Veeningen <meilof@gmail.com>
Date: Mon, 3 Jan 2005 20:30:44 +0100
Subject: [PATCH] Include RSA declarations only when public key algorithms are
 enabled. Problem reported by Meilof Veeningen <meilof@gmail.com>.

Rev: src/nettle/ChangeLog:1.318
Rev: src/nettle/examples/io.h:1.5
---
 ChangeLog     | 6 ++++++
 examples/io.h | 6 +++++-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index 056d5d57..9ebe265a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-01-03  Niels M�ller  <niels@s3.kth.se>
+
+	* examples/io.h: Include RSA declarations only when public key
+	algorithms are enabled. Problem reported by Meilof Veeningen
+	<meilof@gmail.com>. 
+
 2004-12-07  Niels M�ller  <nisse@lysator.liu.se>
 
 	* Makefile.in: Install directories, using $(INSTALL) -d, only if
diff --git a/examples/io.h b/examples/io.h
index a5211951..93c6856c 100644
--- a/examples/io.h
+++ b/examples/io.h
@@ -27,7 +27,9 @@
 #define NETTLE_EXAMPLES_IO_H_INCLUDED
 
 #include "nettle-meta.h"
-#include "rsa.h"
+#if WITH_PUBLIC_KEY
+# include "rsa.h"
+#endif
 #include "yarrow.h"
 
 #include <stdio.h>
@@ -61,6 +63,7 @@ simple_random(struct yarrow256_ctx *ctx, const char *name);
 int
 hash_file(const struct nettle_hash *hash, void *ctx, FILE *f);
 
+#if WITH_PUBLIC_KEY
 struct rsa_public_key;
 struct rsa_private_key;
 
@@ -68,5 +71,6 @@ int
 read_rsa_key(const char *name,
 	     struct rsa_public_key *pub,
 	     struct rsa_private_key *priv);
+#endif /* WITH_PUBLIC_KEY */
 
 #endif /* NETTLE_EXAMPLES_IO_H_INCLUDED */
-- 
GitLab