aboutsummaryrefslogtreecommitdiffstats
path: root/src/block
Commit message (Expand)AuthorAgeFilesLines
* size_tlloyd2010-10-131-1/+1
* More size_tlloyd2010-10-134-25/+25
* Use size_t rather than u32bit for the blocks argument of encrypt_nlloyd2010-10-1263-396/+422
* s/u32bit/size_t/ for block cipher parallelism querieslloyd2010-10-126-9/+9
* Compile fixlloyd2010-10-041-1/+1
* Make configure output more sensible wrt incompatible moduleslloyd2010-09-281-0/+4
* In the IDEA key schedule, using the extended Euclidean algorithm tolloyd2010-09-231-17/+14
* Remove more implicit vector to pointer conversionslloyd2010-09-141-10/+12
* Handle the case that container size() returns something other than u32bitlloyd2010-09-142-2/+3
* Completely remove the second parameter to SecureVector which specifieslloyd2010-09-1440-185/+202
* Remove more uses of vector to pointer implicit conversionslloyd2010-09-132-6/+11
* First set of changes for avoiding use implicit vector->pointer conversionslloyd2010-09-1319-110/+129
* Anywhere where we use MemoryRegion::begin to get access to the raw pointerlloyd2010-09-132-6/+6
* Big, invasive but mostly automated change, with a further attempt atlloyd2010-09-0726-47/+47
* 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