aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/passhash/bcrypt
Commit message (Collapse)AuthorAgeFilesLines
* Convert http:// links to https:// where possibleJack Lloyd2017-10-241-1/+1
|
* Add wrappers for reinterpret_cast between char* and uint8_t*Jack Lloyd2017-10-031-2/+2
| | | | | | | 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.
* Add missing header includesJack Lloyd2017-09-211-0/+1
|
* Header file cleanupsJack Lloyd2017-09-212-2/+5
| | | | Some help from include-what-you-use
* 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.
* Small cleanup in bcryptJack Lloyd2017-09-161-3/+3
|
* More MSVC warnings fixesJack Lloyd2017-08-311-1/+1
|
* Remove "Dirty hack" for multiple defines in lex_me_harder()Simon Warta2017-04-021-2/+3
|
* Convert to using standard uintN_t integer typesJack Lloyd2016-12-182-15/+15
| | | | | | 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.
* Don't put pointers into vector iterator constructor in make_bcryptSimon Warta2015-07-091-2/+2
|
* lib/passhash: Convert &vec[0] to vec.data()Simon Warta2015-06-231-4/+4
|
* Modify interfaces of KDF and PBKDF to write output to an array, withlloyd2015-02-181-2/+4
| | | | higher level functions on interface handling returning a vector.
* Remove algo factory, engines, global RNG, global state, etc.lloyd2015-02-041-1/+0
| | | | | | | | | | | | | | | 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-102-2/+2
| | | | | Update license header line to specify the terms and refer to the file, neither of which it included before.
* Move lib into srclloyd2014-01-103-0/+196