| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
* | Use i instead of j for iterator var | lloyd | 2008-09-07 | 1 | -4/+4 |
* | Remove iostream include | lloyd | 2008-09-05 | 1 | -2/+0 |
* | Optimize right shift a little | lloyd | 2008-09-05 | 1 | -14/+38 |
* | Replace __builtin_ctzl with a new ctz function in bit_ops.h | lloyd | 2008-09-05 | 1 | -1/+1 |
* | Wrap the BigInt register in a small class that caches the significant | lloyd | 2008-09-05 | 2 | -38/+81 |
* | Revert change to dl_work_factor for now - breaks ElGamal tests | lloyd | 2008-09-05 | 1 | -0/+14 |
* | Rewrite dl_work_factor using a lookup table with data from RFC 3526, | lloyd | 2008-09-05 | 1 | -16/+18 |
* | Add the IKE 6144-bit MODP group, from RFC 3526 | lloyd | 2008-09-05 | 1 | -0/+37 |
* | Define the functions from bit_ops.h as inline template functions, instead | lloyd | 2008-09-05 | 1 | -68/+0 |
* | A possible optimization to low_zero_bits (which was showing up hot in | lloyd | 2008-09-02 | 1 | -6/+22 |
* | Where bit_ops.h was used to get xor_buf, include xor_buf.h instead | lloyd | 2008-09-02 | 26 | -25/+25 |
* | Reduce RW creation min also to 512 for benchmarks | lloyd | 2008-09-02 | 1 | -1/+1 |
* | The counter is not specified, so do not mention it | lloyd | 2008-08-31 | 1 | -1/+1 |
* | Add DSS groups with 2048 and 3072 bit p values (and 256 bit q subgroups). | lloyd | 2008-08-31 | 1 | -105/+141 |
* | Allow generating 512 and 768 bit DSA keys. | lloyd | 2008-08-31 | 1 | -6/+9 |
* | Allow creating 512 bit RSA keys again (for benchmark, mostly) | lloyd | 2008-08-31 | 1 | -1/+1 |
* | Merge mp_sqr.cpp and mp_mul.cpp into mp_karat.cpp, since there is a lot | lloyd | 2008-08-27 | 2 | -147/+132 |
* | Use -BigInt(1) instead of BigInt("-1") to avoid the parsing overhead. | lloyd | 2008-08-27 | 1 | -2/+2 |
* | Add a specialized version of theta() for NullVector, since it cleans up | lloyd | 2008-07-15 | 1 | -4/+25 |
* | merge of '17a621a99c0fb8685efd5f3f3411a44e4d5ff835' | lloyd | 2008-07-13 | 1 | -0/+1 |
|\ |
|
| * | Missing include of timers.h, error if no timer modules used | lloyd | 2008-07-08 | 1 | -0/+1 |
* | | Add the block cipher Noekeon (http://gro.noekeon.org/). Only "indirect mode" | lloyd | 2008-07-11 | 2 | -0/+177 |
|/ |
|
* | Fix return values for ressol(), saying BigInt x = -1 does something | lloyd | 2008-07-07 | 1 | -2/+2 |
* | Remove unneeded parens | lloyd | 2008-07-07 | 1 | -1/+1 |
* | Add an implementation of the Shanks-Tonelli algorithm, which is used to | lloyd | 2008-07-07 | 1 | -0/+82 |