| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | | Move almost all of the ASN.1, BER, and DER codec related code into new | lloyd | 2008-09-28 | 33 | -0/+776 |
* | | Remove needless include of look_pk.h | lloyd | 2008-09-28 | 1 | -1/+0 |
* | | Add dl_algo and dl_group modules | lloyd | 2008-09-28 | 9 | -0/+152 |
* | | Compliation fixes | lloyd | 2008-09-28 | 2 | -2/+2 |
* | | Add missing PBE header and modinfo files | lloyd | 2008-09-28 | 3 | -0/+65 |
* | | Modularize PBEs (password-based encryption schemes) | lloyd | 2008-09-28 | 4 | -3/+64 |
* | | Modularize IF family PK algorithms (integer factorization; RSA and RW base | lloyd | 2008-09-28 | 13 | -0/+199 |
* | | Drop old Makefile. Move tests to examples directory. | lloyd | 2008-09-28 | 3 | -169/+0 |
* | | Move CMS code into main src tree, though it currently doesn't compile (needs ... | lloyd | 2008-09-28 | 11 | -0/+1400 |
* | | Formatting | lloyd | 2008-09-28 | 1 | -8/+6 |
* | | Modularize the public key algorithms, though currently a great deal of | lloyd | 2008-09-28 | 13 | -16/+422 |
* | | Rename compression->compress and allocation->secalloc | lloyd | 2008-09-28 | 13 | -0/+0 |
* | | Split up asm modules into appropriate (topic-specific) modules, eg | lloyd | 2008-09-28 | 29 | -5/+0 |
* | | Modularize MGF1. Make EME1 and EMSA4 depend on it | lloyd | 2008-09-28 | 5 | -1/+47 |
* | | Make mdx_hash also a module, which most of the hash functions depend on. | lloyd | 2008-09-28 | 16 | -6/+83 |
* | | Move all modules into src/ directory | lloyd | 2008-09-28 | 367 | -0/+31011 |
* | | Create an x509 module containing all of the X509 certificate and CA | lloyd | 2008-09-28 | 12 | -3050/+0 |
* | | Split def_ops into multiple files. Modularize DLIES | lloyd | 2008-09-28 | 7 | -484/+423 |
* | | Modularize RNG implementations | lloyd | 2008-09-28 | 6 | -575/+223 |
* | | Modularize CMAC and HMAC | lloyd | 2008-09-28 | 3 | -251/+13 |
* | | Modularize cipher modes | lloyd | 2008-09-28 | 9 | -1092/+61 |
* | | Modularize KDFs, PBKDFs, and PRFs | lloyd | 2008-09-28 | 8 | -501/+54 |
* | | Modularize EME1 and PKCS #1 v1.5 EME | lloyd | 2008-09-28 | 3 | -164/+12 |
* | | Modularize EMSA | lloyd | 2008-09-28 | 7 | -538/+65 |
* | | Modularize CBC-MAC | lloyd | 2008-09-28 | 1 | -109/+0 |
* | | Modularize SSLv3 MAC and X9.19 MACs. Fix some feature macro inconsistencies. | lloyd | 2008-09-28 | 3 | -183/+15 |
* | | Modularize hashes and checksums | lloyd | 2008-09-28 | 17 | -2855/+92 |
* | | Modularize all ciphers | lloyd | 2008-09-28 | 42 | -7863/+186 |
* | | Modularize the Adler32 checksum in checksums/adler32 | lloyd | 2008-09-28 | 3 | -36/+42 |
* | | Rename header guards in modules from BOTAN_EXT_ to BOTAN_ for consistency | lloyd | 2008-09-28 | 1 | -72/+0 |
|/ |
|
* | Add back from Ajisai 0.5.0 the implementations of the SSLv3 MAC and PRF | lloyd | 2008-09-27 | 5 | -0/+234 |
* | Expose CMAC::poly_double as a static function since it looks like I may | lloyd | 2008-09-24 | 1 | -11/+10 |
* | Split EAX decryption into its own file | lloyd | 2008-09-24 | 2 | -113/+127 |
* | Replace the set of prime products with a new set generated by a Python | lloyd | 2008-09-18 | 1 | -64/+65 |
* | Move biging_wordmul inlined into the only place where it is used, | lloyd | 2008-09-17 | 1 | -27/+0 |
* | Add an optimization suggested by Yves Jerschow to combine the four | lloyd | 2008-09-17 | 2 | -11/+20 |
* | Change the constructor for LubyRackoff. Previously it took a string, | lloyd | 2008-09-15 | 2 | -27/+33 |
* | Remove the cache for BigInt::sig_words. I'm baffled how it is it works | lloyd | 2008-09-15 | 1 | -16/+14 |
* | Update BigInt::grow_reg and grow_to to be non-const | lloyd | 2008-09-15 | 1 | -2/+2 |
* | Rename blocks to the slightly more descriptive x_size_8 | lloyd | 2008-09-14 | 1 | -6/+6 |
* | Pass a pointer to a HashFunction to the MGF1 constructor, and have that | lloyd | 2008-09-14 | 2 | -7/+12 |
* | The Memory_Exhaustion exception was only thrown from mem_pool.cpp, so | lloyd | 2008-09-14 | 1 | -0/+14 |
* | Enable square optimization for 16x16 | lloyd | 2008-09-13 | 1 | -2/+0 |
* | Add IETF MODP 8192 DH group | lloyd | 2008-09-12 | 1 | -0/+47 |
* | Fix loop variable naming (i in outermost scope, then j, remove unneeded k) | lloyd | 2008-09-11 | 1 | -20/+20 |
* | Add 16x16->32 word Comba multiply and square | lloyd | 2008-09-09 | 2 | -176/+716 |
* | Hoist load, since compiler may not be able to do so due to aliasing | lloyd | 2008-09-09 | 1 | -4/+7 |
* | Add comment about bigint_simple_sqr just being an optimization to work around... | lloyd | 2008-09-09 | 1 | -1/+6 |
* | Use individual variables intead of an array inside the Salsa20 function, | lloyd | 2008-09-09 | 1 | -37/+65 |
* | Add implementation of Salsa20 stream cipher | lloyd | 2008-09-09 | 2 | -0/+182 |