aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/def_engine/lookup_mac.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Remove support for provider identifiers from SCAN_Name - it turns out thislloyd2008-11-121-1/+1
| | | | | | | | | | | | was not the right place to keep track of this information. Also modify all Algorithm_Factory constructor functions to take instead of a SCAN_Name a pair of std::strings - the SCAN name and an optional provider name. If a provider is specified, either that provider will be used or the request will fail. Otherwise, the library will attempt best effort, based on user-set algorithm implementation settings (combine with benchmark.h for choosing the fastest implementation at runtime) or if not set, a static ordering (preset in static_provider_weight in prov_weight.cpp, though it would be nice to make this easier to toggle).
* Move most of the remaining libstate code to pk_engine.cpp, move engineslloyd2008-11-111-0/+68
| | | | | back to the toplevel since most othe dependencies have been removed now (except get_cipher which still needs changes)
* Move engine to libstate/ directory, since there is a mutual dependencylloyd2008-11-091-92/+0
| | | | | | (messy). Remove unused libstate.h includes from a few files.
* Rename eng_def.h to def_eng.hlloyd2008-11-081-1/+1
|
* Move most of the Default_Engine code into engine/def_engine, and thelloyd2008-11-081-0/+92
engine base classes into src/engine