aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/kdf
Commit message (Collapse)AuthorAgeFilesLines
* kdf: Add missing overridesDaniel Seither2015-07-303-8/+8
|
* lib/kdf: Convert &vec[0] to vec.data()Simon Warta2015-06-256-10/+10
|
* Hide Algorithm_Factory and use the functions in lookup.h internally.lloyd2015-03-043-8/+8
| | | | | | Fix two memory leaks (in TLS and modes) caused by calling get_foo and then cloning the result before saving it (leaking the original object), a holdover from the conversion between construction techniques in 1.11.14
* Convert HKDF to the normal KDF interfacelloyd2015-02-182-59/+34
|
* Modify interfaces of KDF and PBKDF to write output to an array, withlloyd2015-02-189-148/+138
| | | | higher level functions on interface handling returning a vector.
* Add new module `ffi` which provides a plain C interface, plus a newlloyd2015-02-163-0/+119
| | | | | | | | | | | | ctypes Python wrapper that uses it. The API is intentionally designed to have a very simple ABI (extern "C", all structs are opaque, no memory ownership passing the FFI boundary, limited set of simple types as args) so the ctypes wrapper is quite simple. Currently ffi provides ciphers, hashes, MACs, RNGs, PBKDF, KDF, bcrypt, and most public key operations. Remove the old boost.python wrapper and all the build code for it.
* Clean up root dir, remove some unneeded dependencieslloyd2015-02-052-8/+0
|
* Remove algo factory, engines, global RNG, global state, etc.lloyd2015-02-043-6/+5
| | | | | | | | | | | | | | | Convert all uses of Algorithm_Factory and the engines to using Algo_Registry The shared pool of entropy sources remains but is moved to EntropySource. With that and few remaining initializations (default OIDs and aliases) moved elsewhere, the global state is empty and init and shutdown are no-ops. Remove almost all of the headers and code for handling the global state, except LibraryInitializer which remains as a compatability stub. Update seeding for blinding so only one hacky almost-global RNG instance needs to be setup instead of across all pubkey uses (it uses either the system RNG or an AutoSeeded_RNG if the system RNG is not available).
* Add missing files. Remove cipher lookup from engine code.lloyd2015-02-011-0/+28
|
* Use registry also for KDF, EMSA, and EMElloyd2015-01-318-56/+47
|
* Use registry for streams and MACs. Start updating callers.lloyd2015-01-311-5/+0
|
* Remove SSLv3 and handling of SSLv2 client hellos.lloyd2015-01-114-121/+0
|
* Ensure all files have copyright and license info.lloyd2015-01-1012-12/+12
| | | | | Update license header line to specify the terms and refer to the file, neither of which it included before.
* Various small fixes and cleanups, new is_prime utillloyd2014-11-031-0/+1
|
* Add missing std includeslloyd2014-02-161-0/+1
|
* Fix algo factory compilelloyd2014-01-181-1/+1
|
* Guess I won't be needing theselloyd2014-01-186-6/+0
|
* More unique_ptr, also cleanup MGF1 usagelloyd2014-01-189-146/+22
|
* Split off the keyed interfaces of transform to Keyed_Transformlloyd2014-01-181-4/+5
| | | | | Remove the unhelpful 'Algorithm' base class which had previously acted more or less as a global base.
* Move lib into srclloyd2014-01-1021-0/+898