aboutsummaryrefslogtreecommitdiffstats
path: root/src/block
Commit message (Expand)AuthorAgeFilesLines
* Prevent shadowing of one loop param with anotherlloyd2010-09-071-1/+1
* The SSSE3 intrinsics apparently work under Sun Studio as welllloyd2010-09-071-0/+1
* Fix paper ref URL, remove unused prefetch includelloyd2010-08-201-5/+9
* Also use a smaller table in the first round of AES in the decrypt directionlloyd2010-08-191-9/+19
* In the first round of AES, use a 256 element table and do thelloyd2010-08-181-9/+28
* Add also AES-192 using SSSE3lloyd2010-08-122-23/+149
* Support AES-256 is the SSSE3 implementationlloyd2010-08-122-5/+93
* Use _mm_set_epi32 instead of _mm_set_epi64x - VC++ obnoxiously onlylloyd2010-08-112-79/+79
* Only enable aes_ssse3 when compiling with GCC or Clang. For some dumbasslloyd2010-08-091-0/+7
* Add an implementation of AES-128 using SSSE3 instructions. It runs inlloyd2010-08-093-0/+454
* Also allow clang with 32-bit assembly code, everything seems to worklloyd2010-08-081-19/+0
* Only call the scalar versions if we actually have leftover blocks tolloyd2010-06-224-8/+16
* Doxygenlloyd2010-06-211-3/+26
* In IDEA, Noekeon, Serpent, XTEA, provide and use ro accessor functionslloyd2010-06-218-15/+43
* Make Serpent's key_schedule and actual round keys private. Addlloyd2010-06-211-1/+15
* Replace "@return a blah" and "@return the blah" with just "@return blah"lloyd2010-06-162-3/+3
* Yet more Doxygen commentslloyd2010-06-164-19/+28
* More Doxygenlloyd2010-06-154-3/+27
* Don't allow access to key_schedule, just the memberslloyd2010-06-152-3/+5
* More Doxygen updateslloyd2010-06-156-13/+42
* More Doxygen fixeslloyd2010-06-1528-40/+48
* Fix a few hundred Doxygen warningslloyd2010-06-151-2/+2
* Fix buildlloyd2010-06-071-0/+1
* Use "/*" instead of "/**" in starting comments at the begining of a file.lloyd2010-06-077-7/+6
* Hid --enable-isa and instead expose --enable-{sse2,ssse3,aes-ni,altivec}lloyd2010-05-261-1/+1
* Change BlockCipher::parallelism() to return the native parallelism oflloyd2010-05-256-9/+17
* Modify the implementation of multiplication mod 65537 used in IDEA tolloyd2010-04-301-10/+13
* Remove SecureBuffer, which is the fixed-size variant of SecureVector.lloyd2010-03-2338-51/+51
* Set parallelism defaults.lloyd2010-02-256-1/+15
* Instead of the mode parallelism being specified via macros, have itlloyd2010-02-251-0/+5
* Add SIMD version of Noekeon. On a Core2, about 2.7x faster using SIMD_SSE2lloyd2010-01-124-1/+198
* Kill unneeded includelloyd2010-01-121-1/+0
* Add block cipher cascadelloyd2010-01-113-0/+148
* Clean up exceptions. Remove some unused ones like Config_Error. Makelloyd2010-01-051-1/+2
* Add doxygen commentslloyd2009-12-291-0/+13
* Add last nights project, an SSE2 implementation of IDEA. Right about 4xlloyd2009-12-235-53/+290
* Un-internal loadstor.h (and its header deps, rotate.h andlloyd2009-12-2126-38/+41
* Add missing BOTAN_DLL exports.lloyd2009-12-161-3/+1
* Make many more headers internal-only.lloyd2009-12-1629-41/+41
* Full working amalgamation build, plus internal-only headers concept.lloyd2009-12-166-11/+24
* Add missing header guards to package.h and botan.hlloyd2009-12-021-2/+2
* Remove obsolete commentlloyd2009-11-171-15/+0
* Rename/remove some secmem member variables for better matching with STLlloyd2009-11-172-3/+3
* Instead of having two asm_macr.h files being switched in based on modulelloyd2009-11-141-1/+1
* Cleanups in the Square implementationlloyd2009-11-111-30/+38
* Double the speed of Skipjack on my Core2, mostly due to better inlining.lloyd2009-11-112-82/+99
* Inline all of the AES tables into an anon namespace in aes.cpp. Turns outlloyd2009-11-113-411/+399
* Almost double the speed of MARS; from 55 MiB/s to 102 on my Core2. lloyd2009-11-113-231/+216
* Remove SSE4 dependency in AES-192 key schedule, and also avoid requiringlloyd2009-11-102-26/+25
* Add AES-192 using AES-NI. Tested OK with Intel's simulator.lloyd2009-11-102-7/+276