aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/kdf/kdf.h
Commit message (Collapse)AuthorAgeFilesLines
* Add wrappers for reinterpret_cast between char* and uint8_t*Jack Lloyd2017-10-031-5/+5
| | | | | | | Generally speaking reinterpret_cast is sketchy stuff. But the special case of char*/uint8_t* is both common and safe. By isolating those, the remaining (likely sketchy) cases are easier to grep for.
* 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-2/+2
| | | | | 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-25/+25
| | | | | | 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.
* Cleanup from rebaseJack Lloyd2016-10-211-5/+0
|
* Remove Algo_RegistryJack Lloyd2016-10-211-4/+16
| | | | | | | I repent my use of global constructors. I repent my use of global locks. Hopefully I will never touch this code again. :)
* Improve kdf doxygen [ci skip]René Korthaus2016-10-191-6/+29
|
* add label parameter to KDF::derive_keyKai Michaelis2016-05-191-12/+33
|
* Address some review comments by Simon. GH #279Jack Lloyd2015-09-211-1/+1
|
* Handle dependencies re static linking. GH #279Jack Lloyd2015-09-171-0/+13
| | | | | | | | | | | | | | 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.
* Fix pbkdf, pk padding and ECDH registration for static linking.Jack Lloyd2015-09-111-1/+1
| | | | | | | | With this change the tests pass when linked against a static library built in the normal (non-amalgamation) fashion. Remove the restriction in configure.py, and have circleci build the clang static build as a non-amalg.
* lib/kdf: Convert &vec[0] to vec.data()Simon Warta2015-06-251-5/+5
|
* Modify interfaces of KDF and PBKDF to write output to an array, withlloyd2015-02-181-22/+25
| | | | higher level functions on interface handling returning a vector.
* Use registry also for KDF, EMSA, and EMElloyd2015-01-311-0/+3
|
* 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.
* Add missing std includeslloyd2014-02-161-0/+1
|
* More unique_ptr, also cleanup MGF1 usagelloyd2014-01-181-13/+1
|
* 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-101-0/+136