aboutsummaryrefslogtreecommitdiffstats
path: root/apps/progs.h
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>1999-11-14 03:23:17 +0000
committerDr. Stephen Henson <steve@openssl.org>1999-11-14 03:23:17 +0000
commita0e9f529a441a3b9c42ca9a18edb15ff14878076 (patch)
treea655ffcd3db44fb7d9ee0e86d7ded8f24cd4e7e4 /apps/progs.h
parent0286d944541b0622bcbf513d79083183d27c8603 (diff)
downloadopenssl-a0e9f529a441a3b9c42ca9a18edb15ff14878076.tar.gz
Add support for the 40 and 64 bit RC2 and RC4 ciphers in 'enc'
add documentation for 'enc'.
Diffstat (limited to 'apps/progs.h')
-rw-r--r--apps/progs.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/progs.h b/apps/progs.h
index 422dcedfb9..cf5437da6a 100644
--- a/apps/progs.h
+++ b/apps/progs.h
@@ -118,6 +118,12 @@ FUNCTION functions[] = {
#ifndef NO_RC4
{FUNC_TYPE_CIPHER,"rc4",enc_main},
#endif
+#ifndef NO_RC4
+ {FUNC_TYPE_CIPHER,"rc4-64",enc_main},
+#endif
+#ifndef NO_RC4
+ {FUNC_TYPE_CIPHER,"rc4-40",enc_main},
+#endif
#ifndef NO_RC2
{FUNC_TYPE_CIPHER,"rc2",enc_main},
#endif
@@ -190,6 +196,12 @@ FUNCTION functions[] = {
#ifndef NO_RC2
{FUNC_TYPE_CIPHER,"rc2-ofb",enc_main},
#endif
+#ifndef NO_RC2
+ {FUNC_TYPE_CIPHER,"rc2-64-cbc",enc_main},
+#endif
+#ifndef NO_RC2
+ {FUNC_TYPE_CIPHER,"rc2-40-cbc",enc_main},
+#endif
#ifndef NO_BF
{FUNC_TYPE_CIPHER,"bf-cbc",enc_main},
#endif