summaryrefslogtreecommitdiffstats
path: root/apps/dsa.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/dsa.c')
-rw-r--r--apps/dsa.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/dsa.c b/apps/dsa.c
index dedf8e174a..7ff6ee960f 100644
--- a/apps/dsa.c
+++ b/apps/dsa.c
@@ -113,7 +113,9 @@ int MAIN(int argc, char **argv)
char *passin = NULL, *passout = NULL;
int modulus = 0;
+#ifndef OPENSSL_NO_RC4
int pvk_encr = 2;
+#endif
apps_startup();
@@ -168,12 +170,14 @@ int MAIN(int argc, char **argv)
engine = *(++argv);
}
# endif
+#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)