aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/block/blowfish
Commit message (Collapse)AuthorAgeFilesLines
* Fix static lib registration for block, hash, mac, stream, kdfJack Lloyd2015-09-101-3/+1
| | | | | | | | | | | The support problems from having static libraries not work in the obvious way will be endless trouble. Instead have each set of registrations tag along in a source file for the basic type, at the cost of some extra ifdefs. On shared libs this is harmless - everything is going into the shared object anyway. With static libs, this means pulling in a single block cipher pulls in the text of all the them. But that's still strictly better than the amalgamation (which is really pulling in everything), and it works (unlike status quo).
* block: Add missing overridesDaniel Seither2015-07-301-6/+6
|
* Fix compilation by Clang with _LIBCPP_DEBUGLSK2015-07-081-4/+4
|
* Add a runtime map of string->func() which when called returnlloyd2015-01-281-1/+3
| | | | | | | | | | | | | | | | | Transforms and BlockCiphers. Registration for all types is done at startup but is very cheap as just a std::function and a std::map entry are created, no actual objects are created until needed. This is a huge improvement over Algorithm_Factory which used T::clone() as the function and thus kept a prototype object of each type in memory. Replace existing lookup mechanisms for ciphers, AEADs, and compression to use the transform lookup. The existing Engine framework remains in place for BlockCipher, but the engines now just call to the registry instead of having hardcoded lookups. s/Transformation/Transform/ with typedefs for compatability. Remove lib/selftest code (for runtime selftesting): not the right approach.
* Ensure all files have copyright and license info.lloyd2015-01-103-3/+3
| | | | | Update license header line to specify the terms and refer to the file, neither of which it included before.
* Fix various warnings from VC++ 2014 and add missing includelloyd2014-10-311-1/+1
|
* Move lib into srclloyd2014-01-104-0/+439