Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Throw Encoding_Error instead of Invalid_Argument if a signature encoding | lloyd | 2006-09-30 | 4 | -8/+8 |
| | | | | | operation fails for some reason (typically parameters that the scheme can't handle). | ||||
* | In the keypair consistency check for encryption/decryption keys, a key | lloyd | 2006-09-30 | 1 | -0/+3 |
| | | | | | that was very small (with max_input_size() == 0) would underflow and cause an attempted allocation of a 4 gigabyte input string. | ||||
* | Increment the date, since there have been some changes since July | lloyd | 2006-09-30 | 1 | -1/+1 |
| | |||||
* | Add a basic example of using the bare block cipher object. | lloyd | 2006-09-26 | 1 | -30/+48 |
| | | | | | Make it clear early on in the library initialization section that most users need nothing more than to create an object and go. | ||||
* | Add (very basic) HTML output for public key benchmarking. | lloyd | 2006-09-27 | 2 | -14/+29 |
| | |||||
* | merge of '787875fdb2a5a3621e4a62c17b17727a12d91f35' | lloyd | 2006-09-27 | 1 | -10/+12 |
|\ | | | | | | | and '7da6f3f432b5a3931fe3f7d0b9512b1077afa9bf' | ||||
| * | Improve readability a bit with some additional macros | lloyd | 2006-09-26 | 1 | -10/+12 |
| | | |||||
* | | Update the section of the API doc that talks about library initialization | lloyd | 2006-09-27 | 1 | -22/+46 |
|/ | |||||
* | Change the default CPU MHz when RDTSC is used to 1.866 GHz to match motoko | lloyd | 2006-09-26 | 1 | -1/+1 |
| | |||||
* | Define the ADD_IMM macro in terms of ADD() | lloyd | 2006-09-26 | 1 | -3/+1 |
| | | | | Remove the CLEAR_CARRY macro, which wasn't being used | ||||
* | Move the KDF base class code into kdf.cpp; this prevents the pk_util.cpp | lloyd | 2006-09-26 | 2 | -54/+54 |
| | | | | object code from being linked in when a user just wants to use a PRF | ||||
* | Use -momit-leaf-frame-pointer on x86 and x86-64 | lloyd | 2006-09-26 | 1 | -6/+3 |
| | |||||
* | Add core2duo as an arch alias for amd64 | lloyd | 2006-09-26 | 1 | -0/+1 |
| | |||||
* | Allow --bench-algo to take multiple arguments | lloyd | 2006-09-26 | 1 | -4/+10 |
| | |||||
* | Better instruction scheduling, some higher level macros for readability | lloyd | 2006-09-24 | 2 | -9/+18 |
| | |||||
* | Initial x86-64 assembly code for the inner multiply-add loop. | lloyd | 2006-09-24 | 3 | -0/+175 |
| | |||||
* | Simplify the initial RNG seeding operation | lloyd | 2006-09-21 | 2 | -19/+7 |
| | |||||
* | Add a function to Library_State allowing callers to check if the global | lloyd | 2006-09-21 | 1 | -1/+3 |
| | | | | RNG considers itself seeded. | ||||
* | Do not allocate a block of memory in Pooling_Allocator::init(); this was | lloyd | 2006-09-20 | 2 | -11/+0 |
| | | | | | | | causing allocators that were never used to allocate (and thus, later deallocate) memory. This was causing a noticable slowdown when the mmap based allocator was in used (based on the strace output, this was mostly due to the calls to msync). | ||||
* | Version bump | lloyd | 2006-09-20 | 1 | -1/+1 |
| | |||||
* | Make the initialization/deinitialization functions static members of | lloyd | 2006-09-20 | 2 | -35/+25 |
| | | | | | | | the LibraryInitializer class, rather than global functions floating around inside the Init namespace. Allow callers to provide an alternative Modules object. | ||||
* | The public add_engine API now always places the new engine at the front | lloyd | 2006-09-20 | 2 | -10/+9 |
| | | | | | of the list. The only time when the other behavior was desired was inside the load() function, which now simply appends to the engines vector itself. | ||||
* | Make the implementation of the round function a bit easier to read. | lloyd | 2006-09-20 | 1 | -6/+12 |
| | |||||
* | Opteron and Athlon64 were marked as both aliases and submodels of AMD64. | lloyd | 2006-09-15 | 1 | -6/+2 |
| | | | | | Since no current compiler makes a distinction among different x86-64 CPUs, they've been changed to arch aliases. | ||||
* | Update reference for the SEED test vectors | lloyd | 2006-09-14 | 1 | -2/+2 |
| | |||||
* | When searching the block list, first try the last block we had a good | lloyd | 2006-09-11 | 1 | -4/+4 |
| | | | | | | | | allocation from, rather than the block after that one. This helps the pathalogical case where there are many full blocks and some free blocks at the very end of the list (as then it would loop through each one, trying and failing to allocate from an already full block until it hit the end of the list again). | ||||
* | Correctly deal with allocators added post-initialization. In particular, | lloyd | 2006-09-11 | 8 | -54/+49 |
| | | | | | | | | | | handle the case where an allocator is added that has the same name as one already registered. Flush the cached allocator pointer when the default is changed. Mark comparison operations in Pooling_Allocator::Memory_Block as inline; this seems to help the STL sort and binary search algorithms tremendously. | ||||
* | Remove a useless wrapper function. | lloyd | 2006-09-10 | 1 | -17/+6 |
| | |||||
* | Update the changelog1.5.11 | lloyd | 2006-09-10 | 1 | -0/+9 |
| | |||||
* | Drop this, probably shouldn't have been included in the first place. | lloyd | 2006-09-10 | 1 | -16/+0 |
| | |||||
* | Check in some very preliminary code for wrapping public keys | lloyd | 2006-09-10 | 2 | -12/+68 |
| | | | | Some fixes to the Filter code, though it is still not entirely functional. | ||||
* | Clean up the output produced when a 'note' directive is encountered in a | lloyd | 2006-09-10 | 1 | -5/+2 |
| | | | | module. | ||||
* | Lowercase the link command, no sense in shouting. | lloyd | 2006-09-10 | 1 | -1/+1 |
| | |||||
* | Completely rewrite how the default X509_Store searches are performed, | lloyd | 2006-09-10 | 3 | -101/+99 |
| | | | | | | exposing the actual search objects to the user rather than wrapping them in functions. Primarily this is to avoid the Visual Studio bug alluded to in the last commit. | ||||
* | Hack around some Visual Studio bugs that I can't seem to find good solutions | lloyd | 2006-09-10 | 5 | -24/+40 |
| | | | | for. | ||||
* | Better trace output | lloyd | 2006-09-09 | 1 | -78/+73 |
| | | | | Tidy up module loading | ||||
* | Clean up use of grep and map | lloyd | 2006-09-09 | 1 | -17/+22 |
| | |||||
* | Fix the clean and install targets in the makefiles | lloyd | 2006-09-09 | 8 | -31/+39 |
| | | | | Clean up how help output is produced a bit further. | ||||
* | Split main() into several subroutines. | lloyd | 2006-09-09 | 1 | -580/+650 |
| | | | | | | Improve help and diagnostic output. Exit if an error is encountered when parsing options. | ||||
* | Be more free with suggesting the user try running with --help in the event | lloyd | 2006-09-09 | 1 | -22/+24 |
| | | | | of a failure relating to input. | ||||
* | Add parenthesis to make the order of evaluation in an expression more obvious | lloyd | 2006-09-09 | 1 | -1/+1 |
| | |||||
* | Merge the various set_if_any functions into a single match_any_of | lloyd | 2006-09-09 | 1 | -40/+32 |
| | |||||
* | Do put a space after -c/-o options, except for Visual C++, which can't | lloyd | 2006-09-09 | 11 | -22/+22 |
| | | | | deal with it. | ||||
* | Add a couple of static_casts to make it clear where a type conversion is | lloyd | 2006-09-08 | 4 | -13/+15 |
| | | | | | | | | | being performed. Undefined the prototype creating macro in x509stat.cpp after use. Avoid a possible type conversion in bigint_divop by storing high's top bit in a word instead of a bool. | ||||
* | Return the correct type from Basic_Constraints::get_path_limit (was coercing | lloyd | 2006-09-08 | 2 | -2/+2 |
| | | | | the path limit integer to a boolean) | ||||
* | Fix a bug when generating nmake-style makefiles. | lloyd | 2006-09-08 | 2 | -4/+3 |
| | | | | | | Make sure to close the output file in process_template Work around some Visual Studio command-line brain damange. | ||||
* | Rename error() to croak(), to make it a little more obvious that it doesn't | lloyd | 2006-09-08 | 1 | -146/+155 |
| | | | | | | | | return. Rename read_hash to read_list, which is slightly more accurate. Use croak() instead of calling die directly in most spots. | ||||
* | Some minor simplifications for installation logic. | lloyd | 2006-09-08 | 7 | -68/+47 |
| | | | | Inline print_unix_makefile and print_nmake_makefile into generate_makefile | ||||
* | Various small things, nothing of real import. | lloyd | 2006-09-08 | 1 | -24/+20 |
| | |||||
* | The dir_list() function hardcoded '.' and '..' intead of using File::Spec | lloyd | 2006-09-08 | 1 | -6/+11 |
| |