Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove lock and alias map from SCAN_Name | Jack Lloyd | 2016-11-02 | 1 | -4/+0 |
| | | | | Not used anymore. | ||||
* | Remove unused functions from SCAN_Name | Jack Lloyd | 2016-10-21 | 1 | -17/+0 |
| | |||||
* | Remove alias logic from SCAN_Name | Jack Lloyd | 2016-10-21 | 1 | -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_Registry | Jack Lloyd | 2016-10-21 | 1 | -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 optional | Jack Lloyd | 2016-10-17 | 1 | -2/+2 |
|\ | |||||
| * | Abstract out mutex type. Make threads optional. | Jack Lloyd | 2016-10-12 | 1 | -2/+2 |
| | | |||||
* | | Improve base doxygen [ci skip] | René Korthaus | 2016-10-11 | 1 | -0/+10 |
|/ | |||||
* | cppcheck fixes: Class 'X' has a constructor with 1 argument that is not ↵ | Daniel Neus | 2016-03-05 | 1 | -2/+2 |
| | | | | explicit. | ||||
* | Mass-prefix member vars with m_ | René Korthaus | 2016-01-08 | 1 | -9/+9 |
| | |||||
* | Remove algo factory, engines, global RNG, global state, etc. | lloyd | 2015-02-04 | 1 | -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). |