openssl/crypto/aes
Andy Polyakov af8c1d81a3 Reimplement outer rounds as "compact" in x86 assembler. This has rather
strong impact on decrypt performance, 20-25%. One probably should consider
switching between slower and faster routines depending on how much data
we were asked to process.
2006-07-18 10:05:38 +00:00
..
asm Reimplement outer rounds as "compact" in x86 assembler. This has rather 2006-07-18 10:05:38 +00:00
.cvsignore Add DTLS support. 2005-04-26 16:02:40 +00:00
aes.h Sync aes.h with http://cvs.openssl.org/chngview?cn=15336. 2006-06-05 10:43:41 +00:00
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 Correct logical error in STRICT_ALIGNMENT check and remove copy of 2006-06-05 10:40:28 +00:00
aes_core.c Mitigate cache-collision timing attack on last round. 2006-06-28 08:39:06 +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 Fix #if _MSC_VER clause in aes_locl.h 2005-07-30 19:42:50 +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 Reimplement AES_ofb128_encrypt. 2006-06-05 10:40:54 +00:00
aes_x86core.c Add option for "compact" rounds to aes_x86core.c. "Compact" rounds are 2006-07-14 09:57:55 +00:00
Makefile Add option for "compact" rounds to aes_x86core.c. "Compact" rounds are 2006-07-14 09:57:55 +00:00
README Because Rijndael is more known as AES, use crypto/aes instead of 2002-01-02 16:55:35 +00:00

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.