summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-04-23 21:29:45 +0000
committerUlf Möller <ulf@openssl.org>1999-04-23 21:29:45 +0000
commit995e79e317a59ef9c8039bc09cf9c5fb9c848d92 (patch)
tree4122bd4f67ee9d8977bfcbb22c2eed2adeb5f9db /Configure
parente27cc13f8ed4bbd5cb00fc9847a035b7a72b512e (diff)
Andy Polyakov points out that BF_PTR2 is slower than the generic case.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/Configure b/Configure
index 198dd4a38b..abf0562c8a 100755
--- a/Configure
+++ b/Configure
@@ -47,7 +47,7 @@ use strict;
# RC4_INDEX define RC4_INDEX in crypto/rc4/rc4_locl.h. This turns on
# array lookups instead of pointer use.
# BF_PTR use 'pointer arithmatic' for Blowfish (unsafe on Alpha).
-# BF_PTR2 use a pentium/intel specific version.
+# BF_PTR2 intel specific version (generic version is more efficient).
# MD5_ASM use some extra md5 assember,
# SHA1_ASM use some extra sha1 assember, must define L_ENDIAN for x86
# RMD160_ASM use some extra ripemd160 assember,
@@ -55,7 +55,7 @@ use strict;
my $x86_gcc_des="DES_PTR DES_RISC1 DES_UNROLL";
# MD2_CHAR slags pentium pros
-my $x86_gcc_opts="RC4_INDEX MD2_INT BF_PTR2";
+my $x86_gcc_opts="RC4_INDEX MD2_INT";
# MODIFY THESE PARAMETERS IF YOU ARE GOING TO USE THE 'util/speed.sh SCRIPT
# Don't worry about these normally