| Commit message (Expand) | Author | Age | Files | Lines |
* | Prevent loop variable shadowing | lloyd | 2010-09-07 | 1 | -12/+12 |
* | Remove trailing comma from enum decl | lloyd | 2010-09-07 | 1 | -1/+1 |
* | Prevent shadowing of one loop param with another | lloyd | 2010-09-07 | 1 | -1/+1 |
* | Update CPU optimization flags for Sun Studio to the previous decade. | lloyd | 2010-09-07 | 1 | -6/+10 |
* | The SSSE3 intrinsics apparently work under Sun Studio as well | lloyd | 2010-09-07 | 1 | -0/+1 |
* | Cast the first argument to msync, munmap, mlock, and munlock to char* | lloyd | 2010-09-07 | 2 | -4/+4 |
* | Fix comparison functor | lloyd | 2010-09-03 | 1 | -3/+3 |
* | According to Thomas Maier-Komor in a post to botan-devel, the right | lloyd | 2010-09-03 | 1 | -0/+2 |
* | Clean up the unix process running entropy source a little bit. Tweak | lloyd | 2010-09-03 | 3 | -24/+35 |
* | Work around Sun Studio multimap insert bug | lloyd | 2010-09-03 | 1 | -0/+5 |
* | The modern name for Sun Workshop Pro is Sun Studio | lloyd | 2010-09-03 | 1 | -1/+1 |
* | Uglify Data_Store::search_with a little to go through multimap_insert | lloyd | 2010-09-03 | 1 | -1/+7 |
* | Remove calling getsid, it causes problems with too many different | lloyd | 2010-09-03 | 1 | -3/+1 |
* | Remove declaration of Hex_Encoder::encode, which was removed in an earlier | lloyd | 2010-09-03 | 1 | -8/+4 |
* | Add dependencies for SSL module | lloyd | 2010-09-03 | 1 | -0/+20 |
* | Remove filter/pipe dependency here | lloyd | 2010-09-03 | 2 | -14/+6 |
* | Update some callers that were using Hex_Encoder or Hex_Decoder but | lloyd | 2010-09-03 | 4 | -35/+26 |
* | Add a simple function to MemoryRegion to truncate to a specified size. | lloyd | 2010-09-03 | 1 | -0/+10 |
* | Add a standalone version of hex encoding and decoding, defining the filters | lloyd | 2010-09-03 | 8 | -137/+334 |
* | Interesting factoid, turns out that overloading std::swap is not | lloyd | 2010-09-02 | 1 | -1/+5 |
* | Rename mp_amd64_msvc to mp_msvc64 since it supports both AMD64 and | lloyd | 2010-08-25 | 3 | -2/+2 |
* | Add support for Windows-style dynamic loading with LoadLibrary. Not | lloyd | 2010-08-25 | 3 | -8/+32 |
* | merge of '4c134c636202fe03606cf0825bad22bd5362a224' | lloyd | 2010-08-22 | 2 | -0/+2 |
|\ |
|
| * | Add support for Atom processors. | lloyd | 2010-08-22 | 2 | -0/+2 |
* | | For passhash9, add another interface that allows the caller to specify | lloyd | 2010-08-22 | 2 | -14/+35 |
|/ |
|
* | When creating a PBKDF2, first check if the argument name is a known | lloyd | 2010-08-21 | 1 | -2/+6 |
* | Turns out OpenSSL's implementation of PBKDF2 allows empty passphrases, | lloyd | 2010-08-21 | 2 | -6/+11 |
* | 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 |
* | Use a different idiom for handling the different cases between being | lloyd | 2010-08-19 | 4 | -45/+48 |
* | In the first round of AES, use a 256 element table and do the | lloyd | 2010-08-18 | 1 | -9/+28 |
* | Correct Doxygen comment | lloyd | 2010-08-17 | 1 | -3/+2 |
* | Fix Doxygen comment in PBKDF2 constructor | lloyd | 2010-08-13 | 1 | -2/+2 |
* | The changelog for 1.9.4 claimed that the default PKCS #8 encryption | lloyd | 2010-08-13 | 1 | -1/+1 |
* | Add also AES-192 using SSSE3 | lloyd | 2010-08-12 | 3 | -23/+151 |
* | Support AES-256 is the SSSE3 implementation | lloyd | 2010-08-12 | 3 | -5/+95 |
* | Use _mm_set_epi32 instead of _mm_set_epi64x - VC++ obnoxiously only | lloyd | 2010-08-11 | 2 | -79/+79 |
* | Remove use of -ansi; it's not particularly helpful anyway, and it | lloyd | 2010-08-11 | 1 | -1/+1 |
* | Workaround problem with GCC 3 - it doesn't like you casting pointers | lloyd | 2010-08-10 | 1 | -0/+4 |
* | Add Filter::name implementation | lloyd | 2010-08-10 | 1 | -0/+2 |
* | Typo fixes | lloyd | 2010-08-10 | 1 | -2/+2 |
* | In 1.9.9 I moved the cryptobox functions out of the CryptoBox | lloyd | 2010-08-10 | 2 | -11/+22 |
* | Only enable aes_ssse3 when compiling with GCC or Clang. For some dumbass | lloyd | 2010-08-09 | 1 | -0/+7 |
* | Clang supports -march | lloyd | 2010-08-09 | 1 | -0/+4 |
* | Add an implementation of AES-128 using SSSE3 instructions. It runs in | lloyd | 2010-08-09 | 4 | -0/+463 |
* | Also allow clang with 32-bit assembly code, everything seems to work | lloyd | 2010-08-08 | 8 | -94/+20 |
* | Clang understands at least some GCC inline asm syntax as well as what | lloyd | 2010-08-08 | 3 | -0/+3 |
* | Identify a i7-860 as Nehalem | lloyd | 2010-08-08 | 1 | -0/+1 |
* | If we can't access cpuid, but we know that we are compiling for | lloyd | 2010-08-08 | 1 | -0/+9 |
* | Use clang++ instead of clang for the compiler driver, otherwise link | lloyd | 2010-08-08 | 1 | -1/+1 |