Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge mp_word64 into mp_generic | lloyd | 2013-07-30 | 8 | -106/+61 |
| | | | | | | Now 64-bit limbs can be used regardless of processor, though we continue to use 32-bit unless we know the processor natively supports 64-bit operations. | ||||
* | Add a generic 64x64->128 multiplication op. | lloyd | 2013-07-30 | 16 | -214/+210 |
| | | | | | | | Use it to merge mp_msvc64 (was using MSVC _umul128 intrinsic) and mp_asm64 (was using inline asm) into mp_word64, which calls the new mul64x64_128 function. That function wraps any available compiler intrinsics or CPU instructions. | ||||
* | Remove unused fields. Thanks Clang | lloyd | 2013-07-30 | 2 | -2/+0 |
| | |||||
* | merge of '5f4aa843bb54591e6bcdf6db6efecf1cb5937638' | lloyd | 2013-07-30 | 4 | -7/+16 |
|\ | | | | | | | and 'bf98faaf2da19ead6fe6c795e488a7fae04804d2' | ||||
| * | merge of '2139fa117e35116a6d728cc58b050fd5fa20994f' | lloyd | 2013-07-29 | 6 | -11/+20 |
| |\ | | | | | | | | | | and 'dd71537d67dd5adb9ab0859ba761ce2fd78c042b' | ||||
| | * | merge of 'a25b72d98eb3f88fcf577fabfcd430ef0758debc' | lloyd | 2013-07-29 | 4 | -7/+16 |
| | |\ | | | | | | | | | | | | | and 'e94f646a2b2fe793b40067b09c95a5871e52a43a' | ||||
| | | * | Add sending std::vector to TLS::Channel | lloyd | 2013-07-01 | 1 | -1/+10 |
| | | | | |||||
| | | * | Namespace AEAD header guards | lloyd | 2013-07-01 | 3 | -6/+6 |
| | | | | |||||
* | | | | merge of '2139fa117e35116a6d728cc58b050fd5fa20994f' | lloyd | 2013-07-30 | 2 | -4/+4 |
|\ \ \ \ | |/ / / |/| / / | |/ / | and 'a25b72d98eb3f88fcf577fabfcd430ef0758debc' | ||||
| * | | Update for 1.11.4 release1.11.4 | lloyd | 2013-07-25 | 2 | -4/+4 |
| | | | |||||
* | | | Add build instructions for iOS, sent by Jeffery Walton. | lloyd | 2013-07-26 | 1 | -1/+40 |
|/ / | |||||
* | | Rewrite for benefit of Clang analyzer | lloyd | 2013-07-19 | 1 | -6/+5 |
| | | |||||
* | | Fix calling on deleted objects | lloyd | 2013-07-19 | 2 | -4/+4 |
| | | |||||
* | | Avoid uninitialized variable warning for rdrand output var | lloyd | 2013-07-19 | 1 | -1/+1 |
| | | |||||
* | | Change default policy to prohibit DTLS to minimize surprise. | lloyd | 2013-07-10 | 11 | -51/+106 |
| | | | | | | | | | | | | | | | | | | | | Allow applications to send arbirary alert messages. Add a new optional parameter to Channel which specifies how large to make the IO buffers by default. Add Channel::reset_state, and reset the IO buffers and cipher specs after a fatal alert. | ||||
* | | Fix ReST syntax | lloyd | 2013-07-10 | 1 | -3/+2 |
| | | |||||
* | | Enable RDRAND in 32-bit builds | lloyd | 2013-07-10 | 1 | -1/+1 |
|/ | |||||
* | Check for overflow when decoding OIDs | lloyd | 2013-06-27 | 1 | -0/+5 |
| | |||||
* | Change same_mem to use XORs instead of equality operators. | lloyd | 2013-06-13 | 1 | -3/+3 |
| | | | | | | Potentially less prone to optimizer trickery wrt early exits, especially as it encourages a SIMD approach which modern compilers tend to prefer if they think they can get away with it. | ||||
* | Add missing header | lloyd | 2013-06-11 | 1 | -0/+47 |
| | |||||
* | Fix include | lloyd | 2013-06-05 | 1 | -1/+1 |
| | |||||
* | Move cryptobox/raw_key.cpp to new module cryptobox_psk which allows it | lloyd | 2013-06-05 | 5 | -25/+12 |
| | | | | | | to be used in TLS without requiring pulling in CTR, Serpent, PBKDF2 and other code required by password-based cryptobox but not needed for TLS session encryption. | ||||
* | Have TLS::Ciphersuite::valid check that all algorithms are available, | lloyd | 2013-06-04 | 2 | -21/+84 |
| | | | | | | | | | | | | | which allows us to remove a number of algorithms as hard dependencies and instead simply allow their use if they are included in the build. Currently all key exchange algorithms (RSA, DH, ECDH, SRP) remain as hard dependencies as msg_{client,server}_key.cpp directly manipulate those types. While theoretically optional, MD5, SHA-1, SHA-2, and SSL3-MAC remain hard dependencies as their availability affects protocol support as well as ciphersuites, though in principle being able to disable MD5/SHA-1 and requiring v1.2 or higher would be useful. | ||||
* | Upgrade report of modules loaded by config to info from debug | lloyd | 2013-06-01 | 1 | -1/+1 |
| | |||||
* | Merge pull from Christopher Dale <[email protected]> | guywithcrookedface | 2013-06-01 | 1 | -0/+9 |
| | | | | | | adding --list-modules option to configure.py Github pull request https://github.com/randombit/botan/pull/1 | ||||
* | Avoid SIGFPE if no providers during benchmark | lloyd | 2013-05-30 | 1 | -4/+8 |
| | |||||
* | Avoid unnecessary allocations during GCM multiply, 20-30% speedup | lloyd | 2013-05-30 | 1 | -15/+12 |
| | |||||
* | Remove mutation from GCM multiply loop | lloyd | 2013-05-30 | 1 | -4/+2 |
| | |||||
* | Add Channel::send_warning_alert and send_fatal_alert | lloyd | 2013-05-30 | 4 | -8/+18 |
| | |||||
* | Fix RST syntax | lloyd | 2013-05-01 | 1 | -1/+1 |
| | |||||
* | Fix Windows and static-only makefiles | lloyd | 2013-04-23 | 2 | -6/+4 |
| | |||||
* | Change TLS::Ciphersuite constructor to be non-inline and to take | lloyd | 2013-04-19 | 2 | -17/+37 |
| | | | | | arguments by const char*. Reduces size of tls_suite_info.o by 80% on Linux with GCC 4.8 | ||||
* | Add missing dependencies | lloyd | 2013-04-19 | 1 | -0/+2 |
| | |||||
* | Avoid warning | lloyd | 2013-04-19 | 1 | -2/+2 |
| | |||||
* | Compile fix | lloyd | 2013-04-19 | 1 | -1/+1 |
| | |||||
* | Add a constant to make it more obvious that the clock polling | lloyd | 2013-04-19 | 2 | -9/+11 |
| | | | | is not considered as contributing entropy to a rng poll. | ||||
* | Some small TLS doc updates | lloyd | 2013-04-19 | 3 | -29/+39 |
| | |||||
* | Avoid using representable value for internal null alert | lloyd | 2013-04-19 | 2 | -14/+7 |
| | |||||
* | Rename ARC4 to RC4 | lloyd | 2013-04-19 | 16 | -66/+68 |
| | |||||
* | Initial notes for 1.11.4 | lloyd | 2013-04-18 | 1 | -0/+17 |
| | |||||
* | Add more generalized runtime performance test, can check AEAD modes | lloyd | 2013-04-17 | 2 | -135/+109 |
| | | | | and for block ciphers will time both encrypt and decrypt. | ||||
* | Always include modules requiring ISA extensions as long as the | lloyd | 2013-04-17 | 17 | -177/+140 |
| | | | | | | | | | | | compiler and target platform might support it. For instance the AES SSSE3 code is now always in any x86 build, with just that specific file being compiled with -mssse3. Since we'll only call that code if cpuid confirms it works at runtime, we don't have portability issues, and it can be safely included in generic builds (eg for distributions). Tweak how machine specific compiler flags are generated to be a bit easier to maintain. | ||||
* | Rewrite the TLS padding comparison to be constant time | lloyd | 2013-04-16 | 1 | -6/+6 |
| | |||||
* | Add a policy for Suite B 128-bit | lloyd | 2013-04-12 | 2 | -12/+33 |
| | |||||
* | Tick version to 1.10.4 | lloyd | 2013-04-12 | 2 | -5/+1 |
| | |||||
* | Remove old/broken/highly incomplete CMS code | lloyd | 2013-04-12 | 9 | -1337/+0 |
| | |||||
* | Kill workaround for GCC 3.x | lloyd | 2013-04-12 | 1 | -4/+0 |
| | |||||
* | Kill off old GCC 3.x workaround | lloyd | 2013-04-12 | 1 | -8/+2 |
| | |||||
* | Avoid null pointer deref if key was not set in AES | lloyd | 2013-04-12 | 1 | -0/+4 |
| | |||||
* | Move zero as null pointer warning to maintainer mode flags | lloyd | 2013-04-12 | 1 | -2/+2 |
| |