summaryrefslogtreecommitdiffstats
path: root/crypto/aes/aes_core.c
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2004-07-18 17:26:01 +0000
committerAndy Polyakov <appro@openssl.org>2004-07-18 17:26:01 +0000
commit859ceeeb5174ce50842112c05230cebb59702e83 (patch)
tree0f97f4a806d322d032ea687063b331c06199f8ce /crypto/aes/aes_core.c
parent22edcae7fadb8357cac7443cb3af62267d5ce664 (diff)
Anchor AES and SHA-256/-512 assembler from C.
Diffstat (limited to 'crypto/aes/aes_core.c')
-rw-r--r--crypto/aes/aes_core.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/aes/aes_core.c b/crypto/aes/aes_core.c
index 2f41a825f8..29e41edd10 100644
--- a/crypto/aes/aes_core.c
+++ b/crypto/aes/aes_core.c
@@ -873,6 +873,7 @@ int AES_set_decrypt_key(const unsigned char *userKey, const int bits,
return 0;
}
+#ifndef AES_ASM
/*
* Encrypt a single block
* in and out can overlap
@@ -1255,3 +1256,4 @@ void AES_decrypt(const unsigned char *in, unsigned char *out,
PUTU32(out + 12, s3);
}
+#endif /* AES_ASM */