aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/aes/aes_cfb.c
Commit message (Collapse)AuthorAgeFilesLines
* Experimental symbol renaming to avoid clashes with regular OpenSSL.Dr. Stephen Henson2011-02-161-0/+1
| | | | Make sure crypto.h is included first in any affected files.
* Engage crypto/modes.Andy Polyakov2008-12-231-175/+4
|
* size_t-fy AES, Camellia and RC4.Andy Polyakov2008-10-311-6/+6
|
* Avoid overrun. Coverity ID 60.Ben Laurie2007-04-051-1/+1
|
* Correct logical error in STRICT_ALIGNMENT check and remove copy ofAndy Polyakov2006-06-051-59/+3
| | | | | | | eay licence, as module is practically rewritten from scratch [well, even original submission was obviously "almost, but not quite, entirely unlike" any other eay *_cfb.c module, not to mention new functions].
* Tune up AES CFB. Performance improvement varies from 10% to 50% fromAndy Polyakov2006-05-301-12/+95
| | | | | platform to platform. Its absolute value is within few percents marginal from that of ECB.
* undo accidental commitNils Larsch2006-04-201-1/+1
|
* as we encrypt every bit separately we need to loop through the numberNils Larsch2006-04-201-1/+1
| | | | | | of bits; thanks to Michael McDougall <mmcdouga@saul.cis.upenn.edu> PR: 1318
* AES-CFB[18] 2x optimization. Well, I bet nobody cares about AES-CFB1Andy Polyakov2004-12-301-46/+20
| | | | performance, but anyway...
* Make sure memmove() is defined, even on SunOS 4.1.4.Richard Levitte2004-11-011-0/+1
| | | | PR: 963
* Add the missing parts for DES CFB1 and CFB8.Richard Levitte2004-01-281-0/+93
| | | | | Add the corresponding AES parts while I'm at it. make update
* disable weird assert()sBodo Möller2002-11-131-0/+6
|
* In CFB mode, the iv is always encrypted.Richard Levitte2002-05-311-1/+1
|
* Add the modes OFB128, CFB128 and CTR128 to AES.Richard Levitte2002-02-161-0/+151
Submitted by Stephen Sprunk <stephen@sprunk.org>