summaryrefslogtreecommitdiff
path: root/crypto/camellia/cmll_cbc.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove /* foo.c */ commentsRich Salz2016-01-261-1/+0
| | | | | | | | | | | | 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>
* Remove the "eay" c-file-style indicatorsRichard Levitte2015-12-181-1/+1
| | | | | | | 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>
* Run util/openssl-format-source -v -c .Matt Caswell2015-01-221-9/+11
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Version skew reduction: trivia (I hope).Ben Laurie2012-06-031-1/+0
|
* Include openssl/crypto.h first in several other files so FIPS renamingDr. Stephen Henson2011-02-161-0/+1
| | | | is picked up.
* Patch the omission from prvious commit #17716.Andy Polyakov2008-12-231-2/+2
|
* Engage crypto/modes.Andy Polyakov2008-12-231-84/+6
|
* size_t-fy AES, Camellia and RC4.Andy Polyakov2008-10-311-3/+2
|
* Camellia update. Quoting camellia.c:Andy Polyakov2008-10-281-189/+59
| | | | | | | | | | | | | | /* * This release balances code size and performance. In particular key * schedule setup is fully unrolled, because doing so *significantly* * reduces amount of instructions per setup round and code increase is * justifiable. In block functions on the other hand only inner loops * are unrolled, as full unroll gives only nominal performance boost, * while code size grows 4 or 7 times. Also, unlike previous versions * this one "encourages" compiler to keep intermediate variables in * registers, which should give better "all round" results, in other * words reasonable performance even with not so modern compilers. */
* Eliminate redundant variable in Camellia CBC routine.Andy Polyakov2006-12-021-55/+47
|
* Improve Camellia code readability.Andy Polyakov2006-12-021-5/+2
|
* Fix bugs in Camellia CBC routine.Andy Polyakov2006-12-021-5/+6
|
* Camellia portability fixes.Andy Polyakov2006-12-021-12/+61
| | | | Submitted by: Masashi Fujita, NTT
* New Camellia implementation (replacing previous version)Bodo Möller2006-07-191-58/+149
| | | | Submitted by: NTT
* Camellia cipher, contributed by NTTBodo Möller2006-06-091-0/+143
Submitted by: Masashi Fujita Reviewed by: Bodo Moeller