aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add Doxygen comments to bigint.h (from InSiTo)lloyd2008-10-131-51/+397
|
* Further doxygen config tweakslloyd2008-10-131-2/+2
|
* Disable extracting private, static, and local functions in Doxygen (too much ↵lloyd2008-10-131-3/+3
| | | | clutter)
* Move KASUMI S-Boxes from kas_tab.cpp to kasumi.cpplloyd2008-10-134-87/+75
|
* Add DES/CBC and 3DES/CBC to benchmark output. (3DES/CBC shows up as 17%lloyd2008-10-131-0/+3
| | | | faster than OpenSSL's - I hope that is not a fluke in the benchmark program)
* Add Doxygen comments to asn1_oid.h (from InSiTo)lloyd2008-10-131-14/+58
|
* Only delete Doxygen files on distclean, not regular cleanlloyd2008-10-132-2/+2
|
* Add Doxygen comments to dh.h (from InSiTo)lloyd2008-10-131-13/+34
|
* Doxygen comments for utils/version.h (from InSiTo)lloyd2008-10-131-0/+26
|
* Add basic support for Doxygen, including a make targetlloyd2008-10-135-5/+253
|
* Default to Itanium2 if provided with just --cpu=ia64. This is safelloyd2008-10-121-1/+2
| | | | | | because there are not any ABI/ISA differences between them (AFAIK), just scheduling. And I think Itanium2 is significantly more common than Itanium1 at this point.
* Remove leading "Botan " from result of version_stringlloyd2008-10-121-3/+9
| | | | | Add a comment explaining why these functions are compiled rather than inlined.
* Add credits entry (name, email, work done) for Martin Doering, Manuel Hartl, ↵lloyd2008-10-121-2/+15
| | | | and Christoph Ludwig
* Add Technische Universitat Darmstadt as a copyright holder (some oflloyd2008-10-121-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)lloyd2008-10-121-0/+1
|
* Add a wrapper around Botan's RandomNumberGenerator using Boost.Python, andlloyd2008-10-127-15/+76
| | | | add a Python test script for it.
* Add name() virtual function in RandomNumberGenerator base class (had been ↵lloyd2008-10-121-0/+2
| | | | there, was lost)
* Fix path to NIST test certificates in Python versionlloyd2008-10-121-1/+1
|
* Add a new switch to configure.pl --with-tr1-implementation whichlloyd2008-10-126-61/+97
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* Rename the TR1 choice macros to BOTAN_USE_STD_TR1 and BOTAN_USE_BOOST_TR1.lloyd2008-10-123-36/+45
| | | | | | | | If neither is defined when build.h is included, choose Boost. Reorganize build.h so it is easier to find things, in particular move all of the interesting toggles to the top of the file and all of the long lists of modules and feature test macros to the end.
* Return const references instead of copies in GFpModulus where possiblelloyd2008-10-121-4/+4
|
* Modify CurveGFp::get_{a,b} to return a const reference instead of a copylloyd2008-10-122-5/+5
|
* Add an implementation of bswap for Visual C++ in x86 inline asm,lloyd2008-10-121-0/+9
| | | | written by Yves Jerschow (sent to me in a personal email 2007-10-23).
* Add a simplistic ECDSA benchmarklloyd2008-10-121-0/+58
|
* Update readme and release notes for 1.7.17 release 2008-10-121.7.17lloyd2008-10-122-2/+2
|
* Decruftlloyd2008-10-121-36/+27
|
* ec_test_mes1 file no longer used by ECDSA testslloyd2008-10-121-1/+0
|
* ECDSA test cleanup. Remove some old commented out code.lloyd2008-10-121-40/+41
|
* Drop two test-generated files. Add one input file needed for ECDSA signaturelloyd2008-10-123-8/+1
| | | | test.
* Cleanup ECDSA tests. Enable test_ec_sign testlloyd2008-10-121-23/+12
|
* Move InSiTo's ECDSA tests into the main test suitelloyd2008-10-125-626/+580
|
* Move ECDSA_Signature into CVC module. It is not used by ECDSA directly now.lloyd2008-10-1111-187/+204
| | | | Change several ECC functions to return const references instead of const values.
* Remove unnecessary includeslloyd2008-10-111-10/+2
|
* Enable throwing of Illegal_Point in check_invariantslloyd2008-10-111-2/+2
|
* Minor additions to the Windows build instructionslloyd2008-10-111-5/+7
|
* Update the algorithms list in doc/info.txtlloyd2008-10-111-21/+41
|
* Generate an ECDSA cert if ECDSA is enabled during testslloyd2008-10-111-0/+9
|
* Default to using SHA-1 with ECDSA in X.509 signatureslloyd2008-10-111-0/+5
|
* Fix ECDSA/SHA-160 OID entrylloyd2008-10-111-1/+1
|
* MSVC does not recognize and as equiv to && in a preprocessor statementlloyd2008-10-111-1/+1
|
* Error was in both x86 and x86-64 asmlloyd2008-10-111-1/+1
|
* Drop files generated each test runlloyd2008-10-114-41/+0
|
* Clarify that HP-UX, QNX, Tru64, and like are tested not a few times a year ↵lloyd2008-10-111-3/+3
| | | | but maybe every few years (at least by me)
* Remove ECDSA/ECDH as todolloyd2008-10-111-8/+0
|
* Disable the implementation of word_add in mp_ia32 for the same reasonlloyd2008-10-111-0/+8
| | | | | as the version in mp_amd64. Presumably they both need the same constraint added for them to work correclty.
* Remove -Werror from example compile flagslloyd2008-10-111-1/+1
|
* Add set of ECC/ECDSA test data, including X.509 and CVC certificates,lloyd2008-10-1147-0/+218
| | | | from InSiTo
* Correct the expected signature name in test_decode_ecdsa_X509 - itlloyd2008-10-111-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_testdatalloyd2008-10-111-20/+20
|
* Add more ECC domain parameter sets from InSiTolloyd2008-10-111-10/+295
|