aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstate/info.txt
Commit message (Collapse)AuthorAgeFilesLines
* propagate from branch 'net.randombit.botan' (head ↵lloyd2010-07-091-2/+0
|\ | | | | | | | | | | 161b5c0300b72baa746f101fda1e2b4a7c71818c) to branch 'net.randombit.botan.c++0x' (head 1fc3875bb8daf4ad0e90ba66db72642203cb9984)
| * propagate from branch 'net.randombit.botan' (head ↵lloyd2010-03-211-2/+0
| |\ | | | | | | | | | | | | | | | 96d0a1885774b624812fd143d541c8bcda319217) to branch 'net.randombit.botan.c++0x' (head e14368ab9d7976f3e111c6bc0adf24eebeb7c114)
| | * propagate from branch 'net.randombit.botan' (head ↵lloyd2010-03-091-2/+0
| | |\ | | | | | | | | | | | | | | | | | | | | 9932d4d63417f7fcc199ada244cbaa6c1c32d9c1) to branch 'net.randombit.botan.c++0x' (head f4a385a376311edc62ef506c72cc56f69e6efd5a)
| | | * propagate from branch 'net.randombit.botan' (head ↵lloyd2009-12-161-2/+0
| | | |\ | | | | | | | | | | | | | | | | | | | | | | | | | 22c82e10d78ad0e2cdaa56cb02f3d846ed0ead5e) to branch 'net.randombit.botan.c++0x' (head 74dbf310b7fcc11f94a16cd63046219acd5d62bc)
| | | | * propagate from branch 'net.randombit.botan' (head ↵lloyd2009-12-161-8/+11
| | | | |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 744dccf92270cf16b80b50ee2759424c9866b256) to branch 'net.randombit.botan.c++0x' (head 2aa1acac1d05e8ea9991fe39015b1db9abc3b24e)
| | | | * \ propagate from branch 'net.randombit.botan' (head ↵lloyd2009-11-021-2/+0
| | | | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2773c2310e8c0a51975987a2dd6c5824c8d43882) to branch 'net.randombit.botan.c++0x' (head f13cf5d7e89706c882604299b508f356c20aae3a)
| | | | | * | Remove dep on mutex module (doesn't exist here). Use initializer list in ↵lloyd2009-09-111-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | libstate.cpp
* | | | | | | Rename S2K to PBKDF, because that is by far the most common name - S2Klloyd2010-07-091-1/+1
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | really is only used by OpenPGP, and largely it was named S2K here because the OpenPGP S2K was implemented years before the ones in PKCS #5. We have a typedef of PBKDF to S2K, and an inlined get_s2k that calls get_pbkdf for source compatability. There doesn't seem to be any reason to have a forward for the renamed s2k.h header - to actually use a PBKDF, you'd have to either include lookup.h and call get_s2k / get_pbkdf, or else include an algorithm-specific header and use it directly. In either case, including s2k.h is neither necessary nor sufficient.
* | | | | | Don't require the AES module; if it's there its there, if it's notlloyd2010-03-191-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | then you can't use the global PRNG but everything else still works.
* | | | | | There are some nasty API problems that are caused by having to pass alloyd2010-03-191-0/+3
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | PRNG everywhere. The removal of the global PRNG was generated by a desire to remove the global library state entirely. However the real point of this was to remove the use of globally visible _mutable_ state; of the mutable state, the PRNG is probably the least important, and the most useful to share. And it seems unlikely that thread contention would be a major issue in the PRNG. Add back a global PRNG to Library_State. Use lazy initialization, so apps that don't ever use a PRNG don't need a seeding step. Then have AutoSeeded_RNG call that global PRNG. Offer once again RandomNumberGenerator& Library_State::global_rng(); which returns a reference to the global PRNG. This RNG object serializes access to itself with a mutex. Remove the hack known as Blinding::choose_nonce, replace with using the global PRNG to choose a blinding nonce
* | | | | Inline Engine_Core::mod_exp into singler caller, and deletelloyd2010-03-051-5/+0
| | | | |
* | | | | Inline look_pk funcslloyd2010-03-051-1/+0
|/ / / /
* | | / Add missing BOTAN_DLL exports.lloyd2009-12-161-1/+4
| |_|/ |/| | | | | | | | Move most of the engine headers to internal
* | | Full working amalgamation build, plus internal-only headers concept.lloyd2009-12-161-8/+11
|/ /
* / Remove the 'realname' attribute on all modules and cc/cpu/os info files.lloyd2009-10-291-2/+0
|/ | | | | Pretty much useless and unused, except for listing the module names in build.h and the short versions totally suffice for that.
* Add a new option --no-autoload to configure.py. This will produce a minimallloyd2009-09-041-1/+1
| | | | | | | | | | | build (only libstate, utils, plus dependencies), which can be extended with use of --enable-modules. To add new modules to the set of always-loaded, use 'load_on always' in info.txt Also fix a few small build problems that popped up when doing a minimal build. Requested by a user.
* Move some files around to break up dependencies between directorieslloyd2009-07-161-0/+2
|
* Add a script that reads the output of print_deps.py and rewriteslloyd2009-07-151-9/+22
| | | | | | the info.txt files with the right module dependencies. Apply it across the codebase.
* Remove pk_lookup - half of it (look_pk.{cpp,h}) depended on libstate directly,lloyd2008-11-111-3/+5
| | | | | the other half was relied upon by pubkey. Move the contents into those two modules. Update deps.
* Move most of the remaining libstate code to pk_engine.cpp, move engineslloyd2008-11-111-0/+2
| | | | | back to the toplevel since most othe dependencies have been removed now (except get_cipher which still needs changes)
* Move Algorithm_Factory from libstate (which it did not depend on) to ↵lloyd2008-11-111-2/+1
| | | | algo_factory/
* Drop look_add.h and the freestanding add_algorithm functionslloyd2008-11-111-1/+0
|
* Drop all options except thread safety. Also remove InitializerOptions, etclloyd2008-11-101-2/+1
| | | | | | | | | | | | | | | and reduce all the arguments to just a bool specifying threads. selftests: off (if desired, run passes_self_test in selftest.h) fips140: Just ran the self tests, totally bogus option. use_engine: On by default (that is, if OpenSSL or asm code is compiled in, it's used by default). One can get better control over this using the provider feature of SCAN_Name (though this doesn't handle cases like nested algorithms yet). secure_memory: On by default.
* Remove Modules class from the initializer code - it just wasn't that usefullloyd2008-11-101-2/+0
| | | | as an abstraction. Check #ifdef's for engines and such directly in libstate.cpp
* Add a class Algorithm_Factory which encapsulates the Engine classes (andlloyd2008-11-101-0/+2
| | | | which will eventually encapsulate the lookup logic as well)
* Sort lineslloyd2008-11-101-2/+2
|
* Mark libstate as depending on mode_padlloyd2008-11-101-0/+1
|
* Add libstate dep on def_enginelloyd2008-11-081-0/+1
|
* Move most of the Default_Engine code into engine/def_engine, and thelloyd2008-11-081-10/+0
| | | | engine base classes into src/engine
* Move botan.h from utils to libstate, since libstate has lookup.h whichlloyd2008-11-081-4/+5
| | | | | | botan.h includes unconditionally. Remove obsolete seed_rng code from init.h
* Move allocate.h with related code in alloclloyd2008-11-081-0/+1
|
* Split lookup_misc.cpp into lookup_mac.cpp and lookup_s2k.cpplloyd2008-11-081-1/+2
|
* Split def_alg.cpp into lookup_{cipher,hash,misc}.cpplloyd2008-11-081-1/+3
|
* Move s2k.{h,cpp} and S2K algos from core and kdf to new s2k/ dirlloyd2008-10-261-0/+1
|
* Put pk_pad.{h,cpp} from core into pk_pad/ dir (cleaner I think)lloyd2008-10-261-0/+4
|
* Move libstate and selftest out of core/ dir to toplevellloyd2008-10-261-0/+27