aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/camellia
Commit message (Collapse)AuthorAgeFilesLines
* Remove EXHEADER, TEST, APPS, links:, install: and uninstall: where relevantRichard Levitte2015-03-311-17/+1
| | | | | | | | | | | | With no more symlinks, there's no need for those variables, or the links target. This also goes for all install: and uninstall: targets that do nothing but copy $(EXHEADER) files, since that's now taken care of by the top Makefile. Also, removed METHTEST from test/Makefile. It looks like an old test that's forgotten... Reviewed-by: Rich Salz <rsalz@openssl.org>
* Stop symlinking, move files to intended directoryRichard Levitte2015-03-311-128/+0
| | | | | | | | | | | | | Rather than making include/openssl/foo.h a symlink to crypto/foo/foo.h, this change moves the file to include/openssl/foo.h once and for all. Likewise, move crypto/foo/footest.c to test/footest.c, instead of symlinking it there. Originally-by: Geoff Thorpe <geoff@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
* Fix crash in SPARC T4 XTS.Andy Polyakov2015-02-241-1/+1
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Run util/openssl-format-source -v -c .Matt Caswell2015-01-229-565/+577
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* make updateMatt Caswell2014-12-111-2/+2
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Include <openssl/foo.h> instead of "foo.h"Geoff Thorpe2014-12-081-1/+1
| | | | | | | | | | | | Exported headers shouldn't be included as "foo.h" by code from the same module, it should only do so for module-internal headers. This is because the symlinking of exported headers (from include/openssl/foo.h to crypto/foo/foo.h) is being removed, and the exported headers are being moved to the include/openssl/ directory instead. Change-Id: I4c1d80849544713308ddc6999a549848afc25f94 Signed-off-by: Geoff Thorpe <geoff@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
* Remove fipscanister build functionality from makefiles.Dr. Stephen Henson2014-12-081-1/+1
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Remove all .cvsignore filesRich Salz2014-11-281-3/+0
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* x86_64 assembly pack: make Windows build more robust.Andy Polyakov2013-01-221-1/+2
| | | | PR: 2963 and a number of others
* [aes|cmll]t4-sparcv9.pl: unify argument handling.Andy Polyakov2012-10-251-4/+1
|
* [aes|cmll]t4-sparcv9.pl: addendum to previous sparcv9_modes.pl commit.Andy Polyakov2012-10-141-2/+2
|
* Add SPARC T4 Camellia support.Andy Polyakov2012-10-112-0/+934
| | | | Submitted by: David Miller
* x86_64 assembly pack: make it possible to compile with Perl located onAndy Polyakov2012-06-271-1/+1
| | | | | | path with spaces. PR: 2835
* Version skew reduction: trivia (I hope).Ben Laurie2012-06-036-29/+10
|
* perlasm: fix symptom-less bugs, missing semicolons and 'my' declarations.Andy Polyakov2012-04-281-2/+2
|
* Update dependencies.Dr. Stephen Henson2011-02-211-8/+24
|
* Include openssl/crypto.h first in several other files so FIPS renamingDr. Stephen Henson2011-02-164-0/+4
| | | | is picked up.
* Change AR to ARX to allow exclusion of fips object modulesDr. Stephen Henson2011-01-261-1/+1
|
* cmll-x86_64.pl: small buglet in CBC subroutine.Andy Polyakov2009-09-171-1/+1
| | | | PR: 2035
* Camellia update: make it respect NO_[INLINE_]ASM and typo in assembler.Andy Polyakov2009-04-064-28/+25
|
* Updatde from stable branch.Dr. Stephen Henson2009-01-071-0/+1
|
* cmll-x86_64.pl: fix bug in cbc tail processing and comply with Win64 ABI spec.Andy Polyakov2008-12-271-3/+3
|
* Windows-specific addenum to "engage crypto/modes" commit #17716.Andy Polyakov2008-12-231-3/+0
|
* Patch the omission from prvious commit #17716.Andy Polyakov2008-12-231-2/+2
|
* Engage crypto/modes.Andy Polyakov2008-12-235-299/+22
|
* cmll-x86_64.pl: Win64 SEH section to handle pushf/popf in CBC routine.Andy Polyakov2008-12-221-0/+23
|
* cmll-x86_64.pl: bug fix and size optimization of Win64 SEH section.Andy Polyakov2008-12-191-31/+6
|
* Add Camellia assembler x86 and x86_64 modules.Andy Polyakov2008-12-033-0/+2225
|
* Implement Configure option pattern "experimental-foo"Bodo Möller2008-12-021-8/+11
| | | | (specifically, "experimental-jpake").
* Reinstate camellia header fix patch.Dr. Stephen Henson2008-11-121-1/+1
|
* Revert the size_t modifications from HEAD that had led to moreGeoff Thorpe2008-11-121-1/+1
| | | | | | knock-on work than expected - they've been extracted into a patch series that can be completed elsewhere, or in a different branch, before merging back to HEAD.
* Fix asserts. Fix incorrect dependency.Ben Laurie2008-11-022-5/+3
|
* Fix warnings.Ben Laurie2008-11-021-1/+1
|
* size_t-fy AES, Camellia and RC4.Andy Polyakov2008-10-315-23/+21
|
* Harmonize Camellia API with version 1.x.Andy Polyakov2008-10-283-7/+23
|
* Camellia update. Quoting camellia.c:Andy Polyakov2008-10-286-1865/+559
| | | | | | | | | | | | | | /* * 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. */
* Apply mingw patches as supplied by Roumen Petrov an Alon Bar-LevLutz Jänicke2008-04-171-0/+1
| | | | | PR: 1552 Submitted by: Roumen Petrov <openssl@roumenpetrov.info>, "Alon Bar-Lev" <alon.barlev@gmail.com>
* Make room for Camellia assembler.Andy Polyakov2007-08-281-3/+2
|
* Fix buffer overrun. Coverity ID 106.Ben Laurie2007-04-041-1/+1
|
* Constify version strings and some structures.Dr. Stephen Henson2007-01-211-1/+1
|
* Eliminate redundant variable in Camellia CBC routine.Andy Polyakov2006-12-021-55/+47
|
* Improve Camellia code readability.Andy Polyakov2006-12-023-10/+4
|
* Fix bugs in Camellia CBC routine.Andy Polyakov2006-12-021-5/+6
|
* Camellia portability fixes.Andy Polyakov2006-12-024-147/+128
| | | | Submitted by: Masashi Fujita, NTT
* Update dependencies.Dr. Stephen Henson2006-11-301-7/+7
|
* New Camellia implementation (replacing previous version)Bodo Möller2006-07-195-599/+1876
| | | | Submitted by: NTT
* Update .cvsignoreDr. Stephen Henson2006-07-171-0/+1
|
* Camellia cipher, contributed by NTTBodo Möller2006-06-0910-0/+1758
Submitted by: Masashi Fujita Reviewed by: Bodo Moeller