summaryrefslogtreecommitdiffstats
path: root/crypto/evp/e_aes.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-04-08 04:35:58 +0000
committerRichard Levitte <levitte@openssl.org>2001-04-08 04:35:58 +0000
commit77dd9c1850a35c504c5cfcb2d62c4f362bf9691f (patch)
tree8b85f1ef573f0ae0c62872afd55822bd21ba63aa /crypto/evp/e_aes.c
parent83d968df60de6d33de4f0740c6d5051457a17cf0 (diff)
Add the possibility to have AES removed in Windows as well.
Spotted by Harald Koch <chk@pobox.com>
Diffstat (limited to 'crypto/evp/e_aes.c')
-rw-r--r--crypto/evp/e_aes.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/evp/e_aes.c b/crypto/evp/e_aes.c
index 3465da5960..79fc9c3ea8 100644
--- a/crypto/evp/e_aes.c
+++ b/crypto/evp/e_aes.c
@@ -48,6 +48,7 @@
*
*/
+#ifndef OPENSSL_NO_AES
#include <openssl/evp.h>
#include <openssl/err.h>
#include <string.h>
@@ -150,4 +151,4 @@ static int aes_cbc(EVP_CIPHER_CTX *ctx, unsigned char *out,
assert(inl == 0);
return 1;
}
-
+#endif