aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/base/scan_name.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove lock and alias map from SCAN_NameJack Lloyd2016-11-021-4/+0
| | | | Not used anymore.
* Remove unused functions from SCAN_NameJack Lloyd2016-10-211-17/+0
|
* Remove alias logic from SCAN_NameJack Lloyd2016-10-211-9/+0
| | | | | | This required taking a global lock and doing a map lookup each time an algorithm was requested (and so many times during a TLS handshake).
* Remove Algo_RegistryJack Lloyd2016-10-211-1/+18
| | | | | | | I repent my use of global constructors. I repent my use of global locks. Hopefully I will never touch this code again. :)
* Merge GH #665 Add IncludeOS target, make filesystem/threads optionalJack Lloyd2016-10-171-2/+2
|\
| * Abstract out mutex type. Make threads optional.Jack Lloyd2016-10-121-2/+2
| |
* | Improve base doxygen [ci skip]René Korthaus2016-10-111-0/+10
|/
* cppcheck fixes: Class 'X' has a constructor with 1 argument that is not ↵Daniel Neus2016-03-051-2/+2
| | | | explicit.
* Mass-prefix member vars with m_René Korthaus2016-01-081-9/+9
|
* Remove algo factory, engines, global RNG, global state, etc.lloyd2015-02-041-0/+121
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).