aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/des
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-03-26 14:28:04 +0000
committerRichard Levitte <levitte@openssl.org>2002-03-26 14:28:04 +0000
commit0d81c69b8ebfe1d0852a5f5a80fd6eff69479665 (patch)
treed3b0f696e41a99f1d7dec014ade3891cfd248287 /crypto/des
parent401cd0af0f0bb97912a7f0f90c96e8e73fcb4681 (diff)
downloadopenssl-0d81c69b8ebfe1d0852a5f5a80fd6eff69479665.tar.gz
Add the possibility to enable olde des support, not just disable it, for future support. Redocument
Diffstat (limited to 'crypto/des')
-rw-r--r--crypto/des/des.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/des/des.h b/crypto/des/des.h
index a36a8e68a4..4cb9d84fdf 100644
--- a/crypto/des/des.h
+++ b/crypto/des/des.h
@@ -92,6 +92,12 @@ typedef struct DES_ks
} DES_key_schedule;
#ifndef OPENSSL_DISABLE_OLD_DES_SUPPORT
+# ifndef OPENSSL_ENABLE_OLD_DES_SUPPORT
+# define OPENSSL_ENABLE_OLD_DES_SUPPORT
+# endif
+#endif
+
+#ifdef OPENSSL_ENABLE_OLD_DES_SUPPORT
# include <openssl/des_old.h>
#endif