aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/base/scan_name.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove all remaining uses of throwing a std:: exception directlyJack Lloyd2015-12-191-1/+1
| | | | See GH #340 and 6b9a3a5 for background
* Missing addsJack Lloyd2015-12-111-1/+0
|
* Avoid concatination of charsSimon Warta2015-09-221-5/+5
| | | | | | | Ever tried? auto str = "some long string"; auto str2 = str + '\n'; It's not with the brainfuck finding the bug.
* Remove algo factory, engines, global RNG, global state, etc.lloyd2015-02-041-0/+221
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).