aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-10-26 12:05:57 +0000
committerBodo Möller <bodo@openssl.org>2000-10-26 12:05:57 +0000
commit28967cf079aa86f18b125f75258f4a73348796b6 (patch)
tree43628e7ff905cc88ed4bd12286269d26334a73d2 /apps
parenta2bbe594015a56e2fbbc342ade0d9c18b2d88e12 (diff)
downloadopenssl-28967cf079aa86f18b125f75258f4a73348796b6.tar.gz
rsautl.c requires RSA.
Diffstat (limited to 'apps')
-rw-r--r--apps/rsautl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/rsautl.c b/apps/rsautl.c
index bcb94c3d81..de231b0456 100644
--- a/apps/rsautl.c
+++ b/apps/rsautl.c
@@ -55,6 +55,9 @@
* Hudson (tjh@cryptsoft.com).
*
*/
+
+#ifndef NO_RSA
+
#include "apps.h"
#include <string.h>
#include <openssl/err.h>
@@ -288,3 +291,4 @@ static void usage()
BIO_printf(bio_err, "-hexdump hex dump output\n");
}
+#endif