summaryrefslogtreecommitdiffstats
path: root/crypto/aes/aes_cfb.c
AgeCommit message (Collapse)Author
2016-05-17Copyright consolidation 05/10Rich Salz
Reviewed-by: Richard Levitte <levitte@openssl.org>
2016-01-26Remove /* foo.c */ commentsRich Salz
This was done by the following find . -name '*.[ch]' | /tmp/pl where /tmp/pl is the following three-line script: print unless $. == 1 && m@/\* .*\.[ch] \*/@; close ARGV if eof; # Close file to reset $. And then some hand-editing of other files. Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
2015-12-18Remove the "eay" c-file-style indicatorsRichard Levitte
Since we don't use the eay style any more, there's no point tryint to tell emacs to use it. Reviewed-by: Matt Caswell <matt@openssl.org>
2015-01-22Run util/openssl-format-source -v -c .Matt Caswell
Reviewed-by: Tim Hudson <tjh@openssl.org>
2012-06-03Version skew reduction: trivia (I hope).Ben Laurie
2011-02-16Experimental symbol renaming to avoid clashes with regular OpenSSL.Dr. Stephen Henson
Make sure crypto.h is included first in any affected files.
2008-12-23Engage crypto/modes.Andy Polyakov
2008-10-31size_t-fy AES, Camellia and RC4.Andy Polyakov
2007-04-05Avoid overrun. Coverity ID 60.Ben Laurie
2006-06-05Correct logical error in STRICT_ALIGNMENT check and remove copy ofAndy Polyakov
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].
2006-05-30Tune up AES CFB. Performance improvement varies from 10% to 50% fromAndy Polyakov
platform to platform. Its absolute value is within few percents marginal from that of ECB.
2006-04-20undo accidental commitNils Larsch
2006-04-20as we encrypt every bit separately we need to loop through the numberNils Larsch
of bits; thanks to Michael McDougall <mmcdouga@saul.cis.upenn.edu> PR: 1318
2004-12-30AES-CFB[18] 2x optimization. Well, I bet nobody cares about AES-CFB1Andy Polyakov
performance, but anyway...
2004-11-01Make sure memmove() is defined, even on SunOS 4.1.4.Richard Levitte
PR: 963
2004-01-28Add the missing parts for DES CFB1 and CFB8.Richard Levitte
Add the corresponding AES parts while I'm at it. make update
2002-11-13disable weird assert()sBodo Möller
2002-05-31In CFB mode, the iv is always encrypted.Richard Levitte
2002-02-16Add the modes OFB128, CFB128 and CTR128 to AES.Richard Levitte
Submitted by Stephen Sprunk <stephen@sprunk.org>