openssl/crypto/aes
Andy Polyakov 8359421d90 Default to AES u32 being unsinged int and not long. This improves cache
locality on 64-bit platforms (and fixes IA64 assembler-empowered build:-).
The choice is guarded by newly introduced AES_LONG macro, which needs
to be defined only on 16-bit platforms which we don't support (not that
I know of). Meaning that one could as well skip long option altogether.
2005-01-24 14:22:05 +00:00
..
asm Improve ECB performance (48+14*rounds -> 18+13*rounds) and reserve for 2005-01-24 14:14:53 +00:00
.cvsignore
aes_cbc.c Don't zap AES CBC IV, when decrypting truncated content in place. 2005-01-18 00:26:52 +00:00
aes_cfb.c AES-CFB[18] 2x optimization. Well, I bet nobody cares about AES-CFB1 2004-12-30 10:43:33 +00:00
aes_core.c Default to AES u32 being unsinged int and not long. This improves cache 2005-01-24 14:22:05 +00:00
aes_ctr.c Make aes_ctr.c 64-bit savvy. 2004-08-23 22:19:51 +00:00
aes_ecb.c disable weird assert()s 2002-11-13 14:01:34 +00:00
aes_locl.h Default to AES u32 being unsinged int and not long. This improves cache 2005-01-24 14:22:05 +00:00
aes_misc.c Add the modes OFB128, CFB128 and CTR128 to AES. 2002-02-16 12:20:34 +00:00
aes_ofb.c disable weird assert()s 2002-11-13 14:01:34 +00:00
aes.h Default to AES u32 being unsinged int and not long. This improves cache 2005-01-24 14:22:05 +00:00
Makefile.ssl Reserve for AES CBC assembler implementation... 2005-01-18 00:43:32 +00:00
README

This is an OpenSSL-compatible version of AES (also called Rijndael).
aes_core.c is basically the same as rijndael-alg-fst.c but with an
API that looks like the rest of the OpenSSL symmetric cipher suite.