Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Document memory leak being fixed | lloyd | 2008-11-12 | 1 | -0/+1 |
| | |||||
* | Remove support for provider identifiers from SCAN_Name - it turns out this | lloyd | 2008-11-12 | 1 | -0/+3 |
| | | | | | | | | | | | | 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). | ||||
* | Update readme and log for 1.7.21 release 2008-11-111.7.21 | lloyd | 2008-11-11 | 1 | -3/+3 |
| | |||||
* | Drop use of entropy estimation in Randpool for the same reason as HMAC_RNG. | lloyd | 2008-11-11 | 1 | -0/+1 |
| | | | | | | As with HMAC_RNG, instead assume one bit of conditional entropy per byte of polled material. Since they are no longer used, drop the entropy estimation routines entirely. | ||||
* | Mention engine changes in release notes | lloyd | 2008-11-11 | 1 | -0/+2 |
| | |||||
* | Update log | lloyd | 2008-11-10 | 1 | -0/+1 |
| | |||||
* | Mention HMAC_RNG polling change in release notes | lloyd | 2008-11-10 | 1 | -0/+1 |
| | |||||
* | Tick version to 1.7.21-pre | lloyd | 2008-11-09 | 1 | -0/+2 |
| | |||||
* | Update readme and release notes for 1.7.20 release 2008-11-09 | lloyd | 2008-11-09 | 1 | -1/+1 |
| | |||||
* | Document removing get_mgf | lloyd | 2008-11-08 | 1 | -0/+1 |
| | |||||
* | Log base.h split | lloyd | 2008-11-08 | 1 | -0/+1 |
| | |||||
* | Cache device descriptors in Device_EntropySource | lloyd | 2008-11-07 | 1 | -0/+1 |
| | |||||
* | Add example line for installed Botan, commented out | lloyd | 2008-11-07 | 1 | -0/+3 |
| | |||||
* | Make the examples Makefile a bit smarter | lloyd | 2008-11-07 | 1 | -10/+8 |
| | |||||
* | Fix the --with-build-dir option, so that it is actually possible to do | lloyd | 2008-11-06 | 1 | -2/+2 |
| | | | | | | | | | | | | out of tree builds. Also rename the generated botan-config script so that it is, like the pkg-config settings, namespaced by the major and minor version numbers (eg, botan-17-config). This is useful in particular for distros like Debian which ship both stable and unstable versions. Currently Debian is actually the only distro I know of shipping 1.7 as well as 1.6, but I would certainly like to encourage more in the future by making it easy to do. | ||||
* | Mention pkg-config change in log | lloyd | 2008-11-06 | 1 | -0/+1 |
| | |||||
* | Reset version as 1.7.20-pre | lloyd | 2008-11-06 | 1 | -0/+2 |
| | |||||
* | Update readme and log for 1.7.19 release 2008-11-061.7.19 | lloyd | 2008-11-06 | 1 | -1/+1 |
| | |||||
* | Document Turing optimizations | lloyd | 2008-11-03 | 1 | -0/+1 |
| | |||||
* | Mention HMAC_RNG in release notes | lloyd | 2008-10-28 | 1 | -0/+1 |
| | |||||
* | Mention change in Randpool reseeding in release notes | lloyd | 2008-10-28 | 1 | -0/+1 |
| | |||||
* | Document OpenPGP_S2K change | lloyd | 2008-10-26 | 1 | -0/+1 |
| | |||||
* | Move EntropySource base class to new entropy_src.h (which allows the ↵ | lloyd | 2008-10-26 | 1 | -0/+1 |
| | | | | | | implementations to decouple from knowing about RandomNumberGenerator). | ||||
* | Move rng.{cpp,h} from core to rng/ topdir | lloyd | 2008-10-26 | 22 | -80/+64 |
| | | | | | | | | | | | | | | Add a new class AutoSeeded_RNG that is a RandomNumberGenerator that wraps up the logic formerly in RandomNumberGenerator::make_rng. make_rng in fact now just returns a new AutoSeeded_RNG object. AutoSeeded_RNG is a bit more convenient because - No need to use auto_ptr - No need to dereference (same syntax everywhere - it's an underestimated advantage imo) Also move the code from timer/timer_base to timer/ | ||||
* | Bump version to 1.7.19-pre | lloyd | 2008-10-26 | 1 | -0/+3 |
| | |||||
* | Update log and readme for 1.7.18 release 2008-10-221.7.18 | lloyd | 2008-10-22 | 1 | -1/+1 |
| | |||||
* | Mention new pkg-config support in log.txt | lloyd | 2008-10-15 | 1 | -0/+1 |
| | |||||
* | Add ECKAEG benchmark. Fix several problems found in ECKAEG key (had pure ↵ | lloyd | 2008-10-13 | 1 | -1/+1 |
| | | | | virtuals) | ||||
* | Add an example for using checksums (CRC, Adler32) and Pipe/Filter/Fork | lloyd | 2008-10-13 | 1 | -0/+31 |
| | |||||
* | Doxygen comments for base64 and hex from InSiTo | lloyd | 2008-10-13 | 1 | -0/+1 |
| | |||||
* | Add credits entry (name, email, work done) for Martin Doering, Manuel Hartl, ↵ | lloyd | 2008-10-12 | 1 | -2/+15 |
| | | | | and Christoph Ludwig | ||||
* | Add Technische Universitat Darmstadt as a copyright holder (some of | lloyd | 2008-10-12 | 1 | -1/+2 |
| | | | | | | | | | the people who worked on InSiTo are from that organization). They were listed as a copyright holder in the InSiTo license file but not individually in any source file, so I missed them before now. Also mark Martin Doering's copyright as 2007-2008 (also to match InSiTo's license.txt) | ||||
* | Add Patrick Sona to the copyright list (he wrote the GF(p) tests) | lloyd | 2008-10-12 | 1 | -0/+1 |
| | |||||
* | Add a new switch to configure.pl --with-tr1-implementation which | lloyd | 2008-10-12 | 1 | -0/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | accepts options 'boost' and 'system'. Now GF(p) math (and indirectly, ECDSA) will be enabled if --with-tr1=boost or --with-tr1=system is passed at build time to enable a shared_ptr implementation. Modules can now specify that they require TR1, in which case they will only be autoloaded if a TR1 implementation was set (they can choose which one to use by checking the feature macros from build.h) The gfpmath module was set to load only on request. That has changed to load automatically (but will only do so if a TR1 impl is set as described above). CVC has also been marked as requiring TR1. (ECDSA/ECDH are not, since they do not use tr1 shared_ptr directly) Update and cleanup help output. Do not print the list of modules in --help anymore (too long); you can still get the list (in an easier to parse format) --module-info. Reorganize the help text so the more useful options are described closer to the top. Fix the --with-endian and --with-unaligned-mem options: they were being accepted but ignored. | ||||
* | Update readme and release notes for 1.7.17 release 2008-10-121.7.17 | lloyd | 2008-10-12 | 1 | -1/+1 |
| | |||||
* | Move InSiTo's ECDSA tests into the main test suite | lloyd | 2008-10-12 | 1 | -606/+0 |
| | |||||
* | Remove unnecessary includes | lloyd | 2008-10-11 | 1 | -10/+2 |
| | |||||
* | Minor additions to the Windows build instructions | lloyd | 2008-10-11 | 1 | -5/+7 |
| | |||||
* | Update the algorithms list in doc/info.txt | lloyd | 2008-10-11 | 1 | -21/+41 |
| | |||||
* | Error was in both x86 and x86-64 asm | lloyd | 2008-10-11 | 1 | -1/+1 |
| | |||||
* | Clarify that HP-UX, QNX, Tru64, and like are tested not a few times a year ↵ | lloyd | 2008-10-11 | 1 | -3/+3 |
| | | | | but maybe every few years (at least by me) | ||||
* | Remove ECDSA/ECDH as todo | lloyd | 2008-10-11 | 1 | -8/+0 |
| | |||||
* | Remove -Werror from example compile flags | lloyd | 2008-10-11 | 1 | -1/+1 |
| | |||||
* | Correct the expected signature name in test_decode_ecdsa_X509 - it | lloyd | 2008-10-11 | 1 | -396/+393 |
| | | | | | | | | | | | wanted ECC_TESTDATA/EMSA1_BSI(SHA-224), while Botan is providing ECDSA/EMSA1_BSI(SHA-224) which seems more useful anyway. Also reindent the code to match more or less the convention in the rest of the codebase. At this point all ECDSA tests are pasing. (That probably just means there aren't enough ECDSA tests) | ||||
* | Move all ECDSA test data into ecc_testdata | lloyd | 2008-10-11 | 1 | -20/+20 |
| | |||||
* | Don't abort if a curve is not found in test_curve_registry | lloyd | 2008-10-11 | 1 | -10/+18 |
| | |||||
* | Catch and print exceptions in the CHECK macros | lloyd | 2008-10-11 | 1 | -4/+4 |
| | |||||
* | Generate and check ECDSA signature in example | lloyd | 2008-10-11 | 1 | -2/+29 |
| | |||||
* | Update release notes | lloyd | 2008-10-11 | 1 | -0/+2 |
| | |||||
* | Print generated public key in ECDSA example | lloyd | 2008-10-11 | 1 | -0/+2 |
| |