aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/base/botan.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove HMAC_RNG, X9.31-RNG, BeOS stats, EGD reader, Unix process runnerJack Lloyd2016-10-281-1/+1
| | | | | Change AutoSeeded_RNG to use SHA-384, SHA-256, SHA-3(256), or SHA-1, whichever is available (in that order).
* Add doxygen mainpageRené Korthaus2016-10-101-0/+57
| | | | Adds a Crypto++-like doxygen mainpage. Replaces the formerly empty mainpage.
* Remove algo factory, engines, global RNG, global state, etc.lloyd2015-02-041-0/+21
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).