| Commit message (Expand) | Author | Age | Files | Lines |
* | Mostly revert 2f4fd18182d5a75c40cd831e7ee3c314be5c57d6, only keep the | lloyd | 2008-03-10 | 202 | -202/+202 |
* | Unroll the loops in SHA_160::hash that unpack the input and perform the | lloyd | 2008-03-09 | 1 | -4/+15 |
* | Rename offset_ variables to idx_ | lloyd | 2008-03-09 | 1 | -30/+30 |
* | Alter bigint_madd2 and bigint_madd3 to take only 3 (4, resp) arguments, | lloyd | 2008-03-09 | 3 | -6/+6 |
* | Also inline xor_buf, both for immediate effeciency gains and for future | lloyd | 2008-03-09 | 1 | -34/+0 |
* | Put reverse_bytes into bit_ops.h so they can be inlined. Rewrite the version | lloyd | 2008-03-08 | 1 | -29/+0 |
* | Mass update of the copyright date. Honestly I don't know why I bother, | lloyd | 2008-02-14 | 208 | -208/+208 |
* | Add a short comment describing Turing::fixedS | lloyd | 2007-11-19 | 1 | -1/+1 |
* | Change the default list of PRNG devices from | lloyd | 2007-11-17 | 1 | -1/+1 |
* | Drop es_file: replaced by es_dev | lloyd | 2007-11-17 | 2 | -37/+0 |
* | Add a hook for the es_dev module in Builtin_Modules | lloyd | 2007-11-17 | 1 | -0/+8 |
* | Mark start and end as const in karatsuba_size since they are never modified | lloyd | 2007-11-16 | 1 | -2/+2 |
* | Revert the change that renamed append() to push_back(). As pointed out | lloyd | 2007-11-15 | 13 | -40/+40 |
* | Rename MemoryRegion::append to push_back | lloyd | 2007-11-14 | 13 | -40/+40 |
* | Remove the ability to load an external configuration file. Applications | lloyd | 2007-11-14 | 3 | -150/+0 |
* | merge of '3302429a7b66a2e175af0e12870f150aaf81445e' | lloyd | 2007-11-12 | 1 | -2/+0 |
|\ |
|
| * | Remove unused include of assert.h | lloyd | 2007-11-07 | 1 | -2/+0 |
* | | Make IDEA::mul_inv just a function in an anonymous namespace, since it really | lloyd | 2007-11-11 | 1 | -38/+36 |
* | | Remove some static_casts that weren't required and didn't do much to make | lloyd | 2007-11-11 | 1 | -11/+11 |
* | | Have IDEA's mul() return the result instead of altering a reference value. | lloyd | 2007-11-11 | 1 | -13/+25 |
|/ |
|
* | Have Malloc_Allocator directly inherit from the Allocator interface, without | lloyd | 2007-10-21 | 1 | -2/+2 |
* | Move reverse_bytes from bit_ops.h to bit_ops.cpp | lloyd | 2007-10-21 | 1 | -0/+30 |
* | sha160.cpp needs include of bit_ops.h, problem was masked by the asm versions | lloyd | 2007-10-19 | 1 | -0/+1 |
* | bit_ops.h no longer includes loadstor.h | lloyd | 2007-10-19 | 54 | -30/+52 |
* | Fold an XOR operation that was happening during SEED encryption/decryption to | lloyd | 2007-10-19 | 1 | -6/+6 |
* | Don't hard code any directories to search for programs into es_unix. | lloyd | 2007-10-19 | 1 | -1/+1 |
* | merge of '7abb64699f9d0ffd4305b8c5686ce581f68c01ed' | lloyd | 2007-10-19 | 1 | -0/+2 |
|\ |
|
| * | The flag that we had run a slow pollwas only set if one was forced from | lloyd | 2007-10-19 | 1 | -0/+2 |
* | | Add support for IPv4 addresses in the X.509 alternative name extension. | lloyd | 2007-10-16 | 3 | -5/+28 |
* | | Add functions that can convert between binary IPv4 addresses and standard | lloyd | 2007-10-16 | 1 | -1/+43 |
* | | Truncate the X9.42 PRF output if the counter overflows. | lloyd | 2007-10-15 | 1 | -1/+1 |
* | | Make some formatting between the encryption and decryption code equivalent. | lloyd | 2007-10-15 | 1 | -1/+4 |
* | | Use shorter variable names in the TEA code. | lloyd | 2007-10-15 | 1 | -12/+12 |
* | | Move the self tests from LibraryInitializer::initialize to | lloyd | 2007-10-15 | 2 | -7/+7 |
|/ |
|
* | The last checkin did not work; the Library_State constructor called code1.7.2 | lloyd | 2007-10-13 | 2 | -9/+31 |
* | Move most of the initializer code directly into the Library_State constructor | lloyd | 2007-10-13 | 2 | -80/+65 |
* | If we attempt to access the global state, and it is null, call | lloyd | 2007-10-07 | 1 | -1/+1 |
* | Add OIDs for SHA-224, SHA-256, SHA-384, SHA-512, and DSA with SHA-224 and | lloyd | 2007-10-03 | 1 | -1/+9 |
* | If DL_Group's constructor can't find a group, throw a reasonably informative | lloyd | 2007-09-29 | 1 | -1/+6 |
* | Use the OUTPUT_LENGTH constant instead of assuming the block size of the cipher | lloyd | 2007-09-17 | 1 | -6/+7 |
* | Check in an initial implementation of CBC-MAC. | lloyd | 2007-09-16 | 2 | -0/+110 |
* | Use Botan:: prefixes to work around a bug in Visual Studio C++ 2003. Patch | lloyd | 2007-07-27 | 1 | -2/+2 |
* | If counter overflows, truncate the output of KDF2. That effectively | lloyd | 2007-07-26 | 1 | -1/+1 |
* | Avoid C-style casts (as detected by GCC's -Wold-style-cast) and instead use | lloyd | 2007-07-23 | 34 | -99/+109 |
* | Use std::string::data() instead of std::string::c_str() in cases where we | lloyd | 2007-07-21 | 9 | -10/+10 |
* | Combine the Blowfish initial sbox contents into a single 1024 element array. | lloyd | 2007-07-17 | 2 | -98/+91 |
* | If an algorithm cache lookup fails, index the newly created prototype object | lloyd | 2007-07-17 | 1 | -6/+7 |
* | We don't need to use locked memory in the X.509 distinguished name. | lloyd | 2007-06-11 | 1 | -1/+1 |
* | On an assignment or initialization split across lines, put the = at the end | lloyd | 2007-05-31 | 2 | -6/+6 |
* | propagate from branch 'net.randombit.botan.stable' (head e92fe807f749c5266693... | lloyd | 2007-05-31 | 1 | -1/+1 |
|\ |
|