| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove an oddly placed newline | lloyd | 2006-08-21 | 1 | -1/+0 |
* | Fix a typo | lloyd | 2006-08-21 | 1 | -1/+1 |
* | Document Pipe's use of Output_Buffers | lloyd | 2006-08-20 | 1 | -29/+45 |
* | Started working on the internals documentation again | lloyd | 2006-08-20 | 2 | -153/+163 |
* | Declare mp_bits for alg_ia32, since it touches the MPI code | lloyd | 2006-08-20 | 1 | -0/+2 |
* | Only error out when multiple modules declaring mp_bits are found _and_ | lloyd | 2006-08-20 | 2 | -4/+6 |
* | Move bigint_simple_mul into mp_mul.cpp, since that is the only place it | lloyd | 2006-08-19 | 4 | -17/+26 |
* | Fix typo | lloyd | 2006-08-19 | 1 | -1/+1 |
* | Delete trailing whitespace | lloyd | 2006-08-19 | 4 | -5/+5 |
* | Move Montgomery reduction algorithm into mp_asm.cpp | lloyd | 2006-08-19 | 8 | -110/+69 |
* | Don't test Skipjack at startup - it's really not that important, and | lloyd | 2006-08-19 | 1 | -8/+0 |
* | Remove trailing whitespace | lloyd | 2006-08-19 | 2 | -2/+2 |
* | Align the major jump targets | lloyd | 2006-08-19 | 1 | -15/+6 |
* | Add an x86 assembly implementation of bigint_mul_add_words, which is | lloyd | 2006-08-18 | 4 | -3/+134 |
* | Simplify the implementation of bigint_divop | lloyd | 2006-08-18 | 1 | -6/+8 |
* | Move montgomery_reduce to after choose_window_bits for better consistency | lloyd | 2006-08-17 | 1 | -18/+18 |
* | Create a slightly higher level wrapper around bigint_monty_redc, save a | lloyd | 2006-08-17 | 1 | -18/+13 |
* | Remove whitespace | lloyd | 2006-08-17 | 1 | -3/+0 |
* | Fix the es_capi module; was not using the new global_config() accessor | lloyd | 2006-08-17 | 1 | -1/+1 |
* | Inline the call to word_add in bigint_monty_redc - the carry in was | lloyd | 2006-08-17 | 1 | -3/+3 |
* | Move bigint_monty_redc to its own file; profiling indicates that this | lloyd | 2006-08-17 | 2 | -33/+49 |
* | Split Montgomery reduction into two functions, the core algorithm linked | lloyd | 2006-08-16 | 3 | -6/+15 |
* | Add a distinct loop ending for loop-until-equals-immediate; other loops | lloyd | 2006-08-15 | 5 | -7/+13 |
* | Remove some variables we didn't really need in the key schedule | lloyd | 2006-08-15 | 1 | -6/+4 |
* | Version bump in the configure script | lloyd | 2006-08-15 | 2 | -2/+2 |
* | Change the Serpent linear transforms to use the move-and-shift-3 macro | lloyd | 2006-08-15 | 1 | -4/+2 |
* | Add a specialized shift instruction for 3 that uses LEA to do a shift and | lloyd | 2006-08-15 | 1 | -0/+1 |
* | Drop the asm-specific serpent.h | lloyd | 2006-08-15 | 2 | -34/+0 |
* | Formatting/readability changes | lloyd | 2006-08-15 | 1 | -6/+5 |
* | Replace Serpent's key_xor function with a macro, so the header can be | lloyd | 2006-08-15 | 2 | -7/+5 |
* | Remove continuation slashes from the last line of some of the macros | lloyd | 2006-08-15 | 1 | -8/+8 |
* | Reorder the linear transformations for (nominally) better instruction | lloyd | 2006-08-15 | 1 | -10/+10 |
* | Have the expansion loop in the key schedule take advantage of free | lloyd | 2006-08-15 | 2 | -12/+17 |
* | Remove unused variable | lloyd | 2006-08-15 | 1 | -5/+7 |
* | Implement the Serpent key schedule in assembly as well, so the C++ | lloyd | 2006-08-15 | 3 | -122/+98 |
* | Remove an unused function | lloyd | 2006-08-15 | 1 | -26/+1 |
* | Implement decryption in the Serpent assembly code | lloyd | 2006-08-15 | 4 | -207/+386 |
* | Add the beginnings of an x96 assembler version of Serpent. Currently only | lloyd | 2006-08-15 | 4 | -0/+621 |
* | Was using sha1_core in the END_FUNCTION calls; doesn't make a difference, | lloyd | 2006-08-14 | 2 | -2/+2 |
* | Changelog updates1.5.10 | lloyd | 2006-08-13 | 1 | -2/+8 |
* | Get instruction scheduling decently correct. Now running at 110 Mb/s on | lloyd | 2006-08-13 | 1 | -5/+5 |
* | Load the message words we need in the round before. By going out to the | lloyd | 2006-08-13 | 1 | -54/+133 |
* | Introduce a MSG() macro which returns the desired message word | lloyd | 2006-08-13 | 1 | -9/+13 |
* | Use LEA with the magic constant and A, rather than the magic and the | lloyd | 2006-08-13 | 1 | -9/+9 |
* | Make the temporary implicit, since we always use ESP inside the round | lloyd | 2006-08-13 | 1 | -47/+49 |
* | Add a (working, optimized) x86 version of MD4 | lloyd | 2006-08-13 | 3 | -2/+182 |
* | Add the memory word and the magic constant using LEA, rather than the | lloyd | 2006-08-13 | 1 | -24/+24 |
* | Forgot the II() macro in the last checkin | lloyd | 2006-08-13 | 1 | -1/+2 |
* | Use the spare register to load the message word, which will potentially | lloyd | 2006-08-13 | 1 | -3/+7 |
* | Make the temporary implicit, since we were always passing the same register | lloyd | 2006-08-13 | 1 | -106/+108 |