summaryrefslogtreecommitdiff
path: root/apps/rsa.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2015-02-26 19:23:38 +0000
committerDr. Stephen Henson <steve@openssl.org>2015-02-27 00:18:10 +0000
commit35313768c77191a61bd6e34393d89e7b7cd78465 (patch)
tree8aa0517d14a82759dd06387dc8a64988e81d668c /apps/rsa.c
parent7a6c97924293757c572be01fb2ba3b181c7a4e9f (diff)
downloadopenssl-new-35313768c77191a61bd6e34393d89e7b7cd78465.tar.gz
Make OpenSSL compile with no-rc4
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'apps/rsa.c')
-rw-r--r--apps/rsa.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/rsa.c b/apps/rsa.c
index e13c14fbc8..419e50455a 100644
--- a/apps/rsa.c
+++ b/apps/rsa.c
@@ -115,8 +115,9 @@ int MAIN(int argc, char **argv)
char *engine = NULL;
# endif
int modulus = 0;
-
+#ifndef OPENSSL_NO_RC4
int pvk_encr = 2;
+#endif
apps_startup();
@@ -178,12 +179,14 @@ int MAIN(int argc, char **argv)
pubin = 2;
else if (strcmp(*argv, "-RSAPublicKey_out") == 0)
pubout = 2;
+#ifndef OPENSSL_NO_RC4
else if (strcmp(*argv, "-pvk-strong") == 0)
pvk_encr = 2;
else if (strcmp(*argv, "-pvk-weak") == 0)
pvk_encr = 1;
else if (strcmp(*argv, "-pvk-none") == 0)
pvk_encr = 0;
+#endif
else if (strcmp(*argv, "-noout") == 0)
noout = 1;
else if (strcmp(*argv, "-text") == 0)