aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/pbkdf/pbkdf.h
Commit message (Collapse)AuthorAgeFilesLines
* Spell check the documentationJack Lloyd2018-09-281-1/+1
|
* Add PasswordHash and PasswordHashFamilyJack Lloyd2018-09-101-0/+3
| | | | This is a contribution by Ribose Inc (@riboseinc)
* Add message to BOTAN_ARG_CHECK and use it more widelyJack Lloyd2018-05-131-5/+1
|
* Thinko fixJack Lloyd2017-09-301-1/+1
|
* Compat typedef PBKDF -> S2KJack Lloyd2017-09-291-1/+12
| | | | [ci skip]
* Cryptobox code modernizationJack Lloyd2017-09-221-0/+9
| | | | Only encrypt so it's easy to verify everything still works.
* Change header guard format to BOTAN_FOO_H_Jack Lloyd2017-09-201-2/+2
| | | | | | ISO C++ reserves names with double underscores in them Closes #512
* Add API stability annotations.Jack Lloyd2017-09-191-1/+1
| | | | | Defined in build.h, all equal to BOTAN_DLL so ties into existing system for exporting symbols.
* Content:Tomasz Frydrych2017-04-031-1/+1
| | | | | | | | | * fixes for deprecated constructions in c++11 and later (explicit rule of 3/5 or implicit rule of 0 and other violations) * `default` specifier instead of `{}` in some places(probably all) * removal of unreachable code (for example `return` after `throw`) * removal of compilation unit only visible, but not used functions * fix for `throw()` specifier - used instead `BOTAN_NOEXCEPT` * removed not needed semicolons
* Convert to using standard uintN_t integer typesJack Lloyd2016-12-181-14/+14
| | | | | | Renames a couple of functions for somewhat better name consistency, eg make_u32bit becomes make_uint32. The old typedefs remain for now since probably lots of application code uses them.
* Remove Algo_RegistryJack Lloyd2016-10-211-4/+0
| | | | | | | I repent my use of global constructors. I repent my use of global locks. Hopefully I will never touch this code again. :)
* Fix doxygen warnings [ci skip]René Korthaus2016-10-191-2/+3
|
* Improve pbkdf doxygen [ci skip]René Korthaus2016-10-191-4/+54
|
* Address some review comments by Simon. GH #279Jack Lloyd2015-09-211-1/+1
|
* Handle dependencies re static linking. GH #279Jack Lloyd2015-09-171-1/+29
| | | | | | | | | | | | | | Previously we were hanging on the type destructors to pull in the relevant objects. However that fails in many simple cases where the object is never deleted. For every type involved in the algo registry add static create and providers functions to access the algo registry. Modify lookup.h to be inline and call those functions, and move a few to sub-headers (eg, get_pbkdf going to pbkdf.h). So accessing the registry involves going through the same file that handles the initialization, so there is no way to end up with missing objs.
* lib/pbkdf: Convert &vec[0] to vec.data()Simon Warta2015-06-231-2/+2
|
* Modify interfaces of KDF and PBKDF to write output to an array, withlloyd2015-02-181-34/+63
| | | | higher level functions on interface handling returning a vector.
* Remove algo factory, engines, global RNG, global state, etc.lloyd2015-02-041-0/+3
| | | | | | | | | | | | | | | 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).
* Ensure all files have copyright and license info.lloyd2015-01-101-1/+1
| | | | | Update license header line to specify the terms and refer to the file, neither of which it included before.
* Split off the keyed interfaces of transform to Keyed_Transformlloyd2014-01-181-8/+4
| | | | | Remove the unhelpful 'Algorithm' base class which had previously acted more or less as a global base.
* Move lib into srclloyd2014-01-101-0/+124