summaryrefslogtreecommitdiffstats
path: root/crypto/evp
diff options
context:
space:
mode:
authorBernd Edlinger <bernd.edlinger@hotmail.de>2020-04-24 01:28:07 +0200
committerBernd Edlinger <bernd.edlinger@hotmail.de>2020-05-08 15:37:47 +0200
commit6b057f75074a9061147d7e64fc77db85e310db47 (patch)
treed0d83f68f986e5323f2a7e599e8fd6dea1178d3b /crypto/evp
parentd07e8b0ae66e96cda9c803de36e977fb7dfe941a (diff)
Remove AES bitsliced S-box implementation from Boyar and Peralta
[extended tests] Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> (Merged from https://github.com/openssl/openssl/pull/11626)
Diffstat (limited to 'crypto/evp')
-rw-r--r--crypto/evp/e_aes.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/crypto/evp/e_aes.c b/crypto/evp/e_aes.c
index a1b7d50bbf..405ddbf9bf 100644
--- a/crypto/evp/e_aes.c
+++ b/crypto/evp/e_aes.c
@@ -130,11 +130,6 @@ void bsaes_xts_decrypt(const unsigned char *inp, unsigned char *out,
size_t len, const AES_KEY *key1,
const AES_KEY *key2, const unsigned char iv[16]);
#endif
-#if !defined(AES_ASM) && !defined(AES_CTR_ASM) \
- && defined(OPENSSL_AES_CONST_TIME) \
- && !defined(OPENSSL_SMALL_FOOTPRINT)
-# define AES_CTR_ASM
-#endif
#ifdef AES_CTR_ASM
void AES_ctr32_encrypt(const unsigned char *in, unsigned char *out,
size_t blocks, const AES_KEY *key,