Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove the misc dir: | lloyd | 2008-09-29 | 579 | -1/+3 |
| | | | | | | | | | | Moved XS, Boost Python, and SWIG wrappers to new toplevel directory 'wrappers' Moved NIST X.509 test suite into checks directory Move the build information used by configure.pl to src/build-data Move scripts directory to doc (for lack of a better spot) | ||||
* | Move gtk+ example to doc/examples | lloyd | 2008-09-29 | 5 | -0/+0 |
| | |||||
* | In build_cmds, push onto a list and join the strings at the end | lloyd | 2008-09-29 | 1 | -6/+5 |
| | |||||
* | Add missing files | lloyd | 2008-09-29 | 2 | -0/+80 |
| | |||||
* | Updates to Boost.Python wrapper for 1.7.14. RSA disabled, needs RNG | lloyd | 2008-09-29 | 5 | -3/+28 |
| | |||||
* | Move KDF, EME, and EMSA base classes from pubkey to core to remove a | lloyd | 2008-09-29 | 24 | -125/+81 |
| | | | | false dependency on BigInt in the KDF/padding code. | ||||
* | Better dependency handling | lloyd | 2008-09-29 | 8 | -30/+47 |
| | |||||
* | Add missing divide.h | lloyd | 2008-09-29 | 1 | -0/+17 |
| | |||||
* | Fix display of loaded modules | lloyd | 2008-09-29 | 1 | -5/+9 |
| | |||||
* | Fix loading issues | lloyd | 2008-09-29 | 5 | -2/+8 |
| | |||||
* | Quieter | lloyd | 2008-09-29 | 1 | -1/+1 |
| | |||||
* | load_on request, not load_on required (though it had the same effect) | lloyd | 2008-09-29 | 2 | -2/+2 |
| | |||||
* | Don't load deps of a module that we won't load | lloyd | 2008-09-29 | 1 | -6/+6 |
| | |||||
* | Version bump to 1.7.14 | lloyd | 2008-09-29 | 1 | -1/+1 |
| | |||||
* | Add deps on bigint, math modules in PK algos | lloyd | 2008-09-29 | 6 | -0/+12 |
| | |||||
* | Put only the implementation of BigInt in src/bigint, mathematical functions | lloyd | 2008-09-29 | 30 | -55/+71 |
| | | | | | | | on top of BigInt go to src/math. Some prototypes were moved in order to complete the split, in particular random_integer() is now a static member of BigInt instead of being a global function, and divide() is in divide.h instead of numthry.h | ||||
* | Make asm implementations distinctly named objects, for instance MD5_IA32, | lloyd | 2008-09-29 | 34 | -191/+485 |
| | | | | | | | | | | | | | | | | | | | rather than silently replacing the C++ versions. Instead they are silently replaced (currently, at least) at the lookup level: we switch off the set of feature macros set to choose the best implementation in the current build configuration. So you can have (and benchmark) MD5 and MD5_IA32 directly against each other in the same program with no hassles, but if you ask for "MD5", you'll get maybe an MD5 or maybe MD5_IA32. Also make the canonical asm names (which aren't guarded by C++ namespaces) of the form botan_<algo>_<arch>_<func> as in botan_sha160_ia32_compress, to avoid namespace collisions. This change has another bonus that it should in many cases be possible to derive the asm specializations directly from the original implementation, saving some code (and of course logically SHA_160_IA32 is a SHA_160, just one with a faster implementation of the compression function, so this seems reasonable anyway). | ||||
* | propagate from branch 'net.randombit.botan' (head ↵ | lloyd | 2008-09-29 | 8 | -6/+14 |
|\ | | | | | | | | | | | ca7d7fc1ae6b55c5328c9cf1ec1cafd1daadedd4) to branch 'net.randombit.botan.modularized' (head 614263a9742a0c554e4093620147f6e156264d41) | ||||
| * | Link to NetSieben and Ajisai in info.txt | lloyd | 2008-09-29 | 1 | -0/+5 |
| | | |||||
| * | Let SHA-1 SSE2 module know that Pentium-M works too | lloyd | 2008-09-28 | 1 | -0/+1 |
| | | |||||
| * | Oops, continue to look in /proc/cpuinfo rather than my home dir | lloyd | 2008-09-28 | 1 | -1/+1 |
| | | |||||
| * | Add support for Pentium-M autodetection and GCC builds. Bug report by | lloyd | 2008-09-28 | 2 | -1/+4 |
| | | | | | | | | Derek Scherger | ||||
| * | Default to very basic platform types for distro builds | lloyd | 2008-09-28 | 5 | -6/+5 |
| | | |||||
* | | Move x509 into cert/ subdir (in prep for InSiTo adding cert/cvc) | lloyd | 2008-09-29 | 24 | -0/+0 |
| | | |||||
* | | Remove todo.txt from .mtn-ignore | lloyd | 2008-09-29 | 1 | -1/+1 |
| | | |||||
* | | Add info.txt files for asm hash modules | lloyd | 2008-09-29 | 4 | -0/+101 |
| | | |||||
* | | Normalize asm names | lloyd | 2008-09-29 | 7 | -13/+13 |
| | | |||||
* | | Expose use of global state in some of the lookup functions, including | lloyd | 2008-09-29 | 8 | -79/+111 |
| | | | | | | | | get_cipher | ||||
* | | Add missing info.txt for generic mp_asm.h | lloyd | 2008-09-29 | 1 | -0/+8 |
| | | |||||
* | | Rename all modinfo.txt files to info.txt, since they are all (none) of | lloyd | 2008-09-29 | 129 | -1/+1 |
| | | | | | | | | | | them modules now. In any case there is no distinction so info.txt seems better. | ||||
* | | Update modinfo with renamed filename (maybe add wildcarding support? This | lloyd | 2008-09-29 | 1 | -1/+1 |
| | | | | | | | | could get tedious) | ||||
* | | Rename for clarity (at least a little bit) | lloyd | 2008-09-29 | 1 | -0/+0 |
| | | |||||
* | | Remove more dependencies on the global state object. | lloyd | 2008-09-29 | 10 | -57/+34 |
| | | | | | | | | | | | | | | New argument to X509_CRL constructor, a boolean that specifies if an exception should be thrown upon encountering an unknown extension type marked as critical. Previously this was controlled globally via the x509/crl/unknown_critical policy flag. | ||||
* | | Hardcode use of Latin1 encoding if an encoding using ASN.1 DIRECTORY STRING | lloyd | 2008-09-29 | 2 | -6/+2 |
| | | | | | | | | | | | | | | | | is encountered and the charaters will not fit into PRINTABLE STRING. Previously was toggle-able between Latin1 and UTF-8 via policy config. However does not seem worth the depencencies especially as AFAIK nobody has ever touched this setting. If its functionality turns out to be needed then something can be arranged later on. | ||||
* | | Pass a Mutex* as an argument to Pooling_Allocator instead of it grabbing | lloyd | 2008-09-29 | 7 | -10/+15 |
| | | | | | | | | one via a reference to the global state. | ||||
* | | Start fixing up for full asm support again | lloyd | 2008-09-29 | 6 | -12/+9 |
| | | |||||
* | | Move mp_mulop.cpp (source file) to asm_amd64 | lloyd | 2008-09-29 | 1 | -0/+0 |
| | | |||||
* | | Move x86-64 asm bswap impl to utils, as bswap_amd64.h | lloyd | 2008-09-29 | 1 | -0/+0 |
| | | |||||
* | | Drop empty io directory | lloyd | 2008-09-29 | 0 | -0/+0 |
| | | |||||
* | | Move fd_unix from io to filters | lloyd | 2008-09-29 | 3 | -0/+0 |
| | | |||||
* | | Add deps, missing includes, etc | lloyd | 2008-09-29 | 5 | -6/+9 |
| | | |||||
* | | Add mlock.cpp to utils modinfo listing | lloyd | 2008-09-29 | 1 | -0/+1 |
| | | |||||
* | | Fix modinfo files | lloyd | 2008-09-29 | 2 | -2/+1 |
| | | |||||
* | | Move mlock to utils, as decled in util.h | lloyd | 2008-09-29 | 1 | -0/+0 |
| | | |||||
* | | Add the missing modinfo.txt | lloyd | 2008-09-29 | 1 | -0/+33 |
| | | |||||
* | | Move parts of core into pk/pubkey which is at least somewhat relevant | lloyd | 2008-09-29 | 29 | -27/+15 |
| | | |||||
* | | Drop create_modinfo.pl, just a temp thing | lloyd | 2008-09-29 | 1 | -35/+0 |
| | | |||||
* | | Add modinfo for keypair and core modules | lloyd | 2008-09-29 | 2 | -0/+91 |
| | | |||||
* | | Move what is left of the uncategorized library to 'core'. There is still | lloyd | 2008-09-29 | 75 | -14/+20 |
| | | | | | | | | | | a lot of public key stuff in here that needs to be extracted however, and probably 2-3 other modules worth of stuff to split off (engines, etc) | ||||
* | | Move timer base class into a module, add dep from other timer modules | lloyd | 2008-09-29 | 7 | -0/+30 |
| | |