aboutsummaryrefslogtreecommitdiff
path: root/util/mk1mf.pl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-01-02 16:55:35 +0000
committerRichard Levitte <levitte@openssl.org>2002-01-02 16:55:35 +0000
commit6f9079fd505c28961049a732e33e662530bdad21 (patch)
tree4c5850b3d621185192a0755809601d9e4ab72291 /util/mk1mf.pl
parentc938563a81d48e1d23bddcf9283d4961794db132 (diff)
downloadopenssl-6f9079fd505c28961049a732e33e662530bdad21.zip
openssl-6f9079fd505c28961049a732e33e662530bdad21.tar.gz
openssl-6f9079fd505c28961049a732e33e662530bdad21.tar.bz2
Because Rijndael is more known as AES, use crypto/aes instead of
crypto/rijndael. Additionally, I applied the AES integration patch from Stephen Sprunk <stephen@sprunk.org> and fiddled it to work properly with the normal EVP constructs (and incidently work the same way as all other symmetric cipher implementations). This results in an API that looks a lot like the rest of the OpenSSL cipher suite.
Diffstat (limited to 'util/mk1mf.pl')
-rwxr-xr-xutil/mk1mf.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index 014c4df..fdaf642 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -92,7 +92,7 @@ $no_mdc2=1 if ($no_des);
$no_ssl3=1 if ($no_md5 || $no_sha);
$no_ssl3=1 if ($no_rsa && $no_dh);
-$no_ssl2=1 if ($no_md5 || $no_rsa);
+$no_ssl2=1 if ($no_md5);
$no_ssl2=1 if ($no_rsa);
$out_def="out";
@@ -873,7 +873,7 @@ sub read_options
elsif (/^no-dsa$/) { $no_dsa=1; }
elsif (/^no-dh$/) { $no_dh=1; }
elsif (/^no-hmac$/) { $no_hmac=1; }
- elsif (/^no-rijndael$/) { $no_rijndael=1; }
+ elsif (/^no-aes$/) { $no_aes=1; }
elsif (/^no-asm$/) { $no_asm=1; }
elsif (/^nasm$/) { $nasm=1; }
elsif (/^gaswin$/) { $gaswin=1; }