| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
* | In get_cipher, do not call cipher->set_iv unless the IV is non-empty | lloyd | 2008-09-09 | 1 | -1/+4 |
* | Reindent | lloyd | 2008-09-07 | 1 | -172/+172 |
* | Comment fix | lloyd | 2008-09-07 | 1 | -1/+1 |
* | Remove bigint_mul_add_words. It was only used now in two callers, | lloyd | 2008-09-07 | 2 | -31/+38 |
* | Inline BigInt::Rep::operator[], BigInt::sig_words, and BigInt::Rep::sig_words | lloyd | 2008-09-07 | 1 | -58/+0 |
* | Inline BigInt::operator[] | lloyd | 2008-09-07 | 1 | -16/+0 |
* | Combine redundant definitions of blocks variable | lloyd | 2008-09-07 | 1 | -7/+6 |
* | Inline BigInt::is_zero | lloyd | 2008-09-07 | 1 | -11/+1 |
* | Inline similarly in karatsuba_mul | lloyd | 2008-09-07 | 1 | -11/+32 |
* | In karatsuba_square, inline the sequence | lloyd | 2008-09-07 | 1 | -3/+25 |
* | Comment cleanup | lloyd | 2008-09-07 | 1 | -4/+2 |
* | Rewrite without gotos | lloyd | 2008-09-07 | 1 | -135/+11 |
* | Inline bigint_sub2 into bigint_monty_redc | lloyd | 2008-09-07 | 1 | -5/+20 |
* | Inline bigint_cmp in bigint_monty_redc (using goto, the horror; I'm basically | lloyd | 2008-09-07 | 1 | -27/+10 |
* | Move bigint_monty_redc to its own file to make asm implementations easier | lloyd | 2008-09-07 | 2 | -29/+205 |