| Commit message (Expand) | Author | Age | Files | Lines |
* | Prevent shadowing of one loop param with another | lloyd | 2010-09-07 | 1 | -1/+1 |
* | The SSSE3 intrinsics apparently work under Sun Studio as well | lloyd | 2010-09-07 | 1 | -0/+1 |
* | Fix paper ref URL, remove unused prefetch include | lloyd | 2010-08-20 | 1 | -5/+9 |
* | Also use a smaller table in the first round of AES in the decrypt direction | lloyd | 2010-08-19 | 1 | -9/+19 |
* | In the first round of AES, use a 256 element table and do the | lloyd | 2010-08-18 | 1 | -9/+28 |
* | Add also AES-192 using SSSE3 | lloyd | 2010-08-12 | 2 | -23/+149 |
* | Support AES-256 is the SSSE3 implementation | lloyd | 2010-08-12 | 2 | -5/+93 |
* | Use _mm_set_epi32 instead of _mm_set_epi64x - VC++ obnoxiously only | lloyd | 2010-08-11 | 2 | -79/+79 |
* | Only enable aes_ssse3 when compiling with GCC or Clang. For some dumbass | lloyd | 2010-08-09 | 1 | -0/+7 |
* | Add an implementation of AES-128 using SSSE3 instructions. It runs in | lloyd | 2010-08-09 | 3 | -0/+454 |
* | Also allow clang with 32-bit assembly code, everything seems to work | lloyd | 2010-08-08 | 1 | -19/+0 |
* | Only call the scalar versions if we actually have leftover blocks to | lloyd | 2010-06-22 | 4 | -8/+16 |
* | Doxygen | lloyd | 2010-06-21 | 1 | -3/+26 |
* | In IDEA, Noekeon, Serpent, XTEA, provide and use ro accessor functions | lloyd | 2010-06-21 | 8 | -15/+43 |
* | Make Serpent's key_schedule and actual round keys private. Add | lloyd | 2010-06-21 | 1 | -1/+15 |
* | Replace "@return a blah" and "@return the blah" with just "@return blah" | lloyd | 2010-06-16 | 2 | -3/+3 |
* | Yet more Doxygen comments | lloyd | 2010-06-16 | 4 | -19/+28 |
* | More Doxygen | lloyd | 2010-06-15 | 4 | -3/+27 |
* | Don't allow access to key_schedule, just the members | lloyd | 2010-06-15 | 2 | -3/+5 |
* | More Doxygen updates | lloyd | 2010-06-15 | 6 | -13/+42 |
* | More Doxygen fixes | lloyd | 2010-06-15 | 28 | -40/+48 |
* | Fix a few hundred Doxygen warnings | lloyd | 2010-06-15 | 1 | -2/+2 |
* | Fix build | lloyd | 2010-06-07 | 1 | -0/+1 |
* | Use "/*" instead of "/**" in starting comments at the begining of a file. | lloyd | 2010-06-07 | 7 | -7/+6 |
* | Hid --enable-isa and instead expose --enable-{sse2,ssse3,aes-ni,altivec} | lloyd | 2010-05-26 | 1 | -1/+1 |
* | Change BlockCipher::parallelism() to return the native parallelism of | lloyd | 2010-05-25 | 6 | -9/+17 |
* | Modify the implementation of multiplication mod 65537 used in IDEA to | lloyd | 2010-04-30 | 1 | -10/+13 |
* | Remove SecureBuffer, which is the fixed-size variant of SecureVector. | lloyd | 2010-03-23 | 38 | -51/+51 |
* | Set parallelism defaults. | lloyd | 2010-02-25 | 6 | -1/+15 |
* | Instead of the mode parallelism being specified via macros, have it | lloyd | 2010-02-25 | 1 | -0/+5 |
* | Add SIMD version of Noekeon. On a Core2, about 2.7x faster using SIMD_SSE2 | lloyd | 2010-01-12 | 4 | -1/+198 |
* | Kill unneeded include | lloyd | 2010-01-12 | 1 | -1/+0 |
* | Add block cipher cascade | lloyd | 2010-01-11 | 3 | -0/+148 |
* | Clean up exceptions. Remove some unused ones like Config_Error. Make | lloyd | 2010-01-05 | 1 | -1/+2 |
* | Add doxygen comments | lloyd | 2009-12-29 | 1 | -0/+13 |
* | Add last nights project, an SSE2 implementation of IDEA. Right about 4x | lloyd | 2009-12-23 | 5 | -53/+290 |
* | Un-internal loadstor.h (and its header deps, rotate.h and | lloyd | 2009-12-21 | 26 | -38/+41 |
* | Add missing BOTAN_DLL exports. | lloyd | 2009-12-16 | 1 | -3/+1 |
* | Make many more headers internal-only. | lloyd | 2009-12-16 | 29 | -41/+41 |
* | Full working amalgamation build, plus internal-only headers concept. | lloyd | 2009-12-16 | 6 | -11/+24 |
* | Add missing header guards to package.h and botan.h | lloyd | 2009-12-02 | 1 | -2/+2 |
* | Remove obsolete comment | lloyd | 2009-11-17 | 1 | -15/+0 |
* | Rename/remove some secmem member variables for better matching with STL | lloyd | 2009-11-17 | 2 | -3/+3 |
* | Instead of having two asm_macr.h files being switched in based on module | lloyd | 2009-11-14 | 1 | -1/+1 |
* | Cleanups in the Square implementation | lloyd | 2009-11-11 | 1 | -30/+38 |
* | Double the speed of Skipjack on my Core2, mostly due to better inlining. | lloyd | 2009-11-11 | 2 | -82/+99 |
* | Inline all of the AES tables into an anon namespace in aes.cpp. Turns out | lloyd | 2009-11-11 | 3 | -411/+399 |
* | Almost double the speed of MARS; from 55 MiB/s to 102 on my Core2. | lloyd | 2009-11-11 | 3 | -231/+216 |
* | Remove SSE4 dependency in AES-192 key schedule, and also avoid requiring | lloyd | 2009-11-10 | 2 | -26/+25 |
* | Add AES-192 using AES-NI. Tested OK with Intel's simulator. | lloyd | 2009-11-10 | 2 | -7/+276 |