Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove needless virtual on GMAC destructor | Jack Lloyd | 2017-10-26 | 1 | -1/+1 |
| | |||||
* | Add checks that keyed algorithms are actually keyed before use | Jack Lloyd | 2017-10-26 | 40 | -30/+287 |
| | | | | | Previously calling update or encrypt without calling set_key first would result in invalid outputs or else crashing. | ||||
* | Add more SipHash tests | Jack Lloyd | 2017-10-26 | 1 | -0/+187 |
| | | | | Generated by ref implementation | ||||
* | Fix build on 32-bit | Jack Lloyd | 2017-10-26 | 1 | -1/+1 |
| | |||||
* | Avoid invalid iterator woes | Jack Lloyd | 2017-10-26 | 1 | -8/+18 |
| | |||||
* | Blake2b optimizations | Jack Lloyd | 2017-10-26 | 3 | -133/+94 |
| | | | | | Nothing major but does improve perf for large buffers from 910 MB/s to 970 MB/s on Skylake. | ||||
* | Merge GH #1275 Avoid needless throw/catch during TLS handshake | Jack Lloyd | 2017-10-26 | 1 | -1/+2 |
|\ | |||||
| * | Added missing include. | Frank Schoenmann | 2017-10-25 | 1 | -0/+1 |
| | | |||||
| * | Perform OIDS lookup before to prevent a guaranteed exception in EC_Group. | Frank Schoenmann | 2017-10-25 | 1 | -1/+1 |
| | | |||||
* | | Avoid sending OCSP status request on resumption client hello | Jack Lloyd | 2017-10-25 | 1 | -2/+0 |
| | | | | | | | | | | | | | | Causes the connection to break for some servers. Fixes GH #1276 Also avoid setting the same extension twice in the initial connection case. The extensions code dedups it so this wasn't a problem, but confusing. | ||||
* | | Round block cipher buffer sizes to multiple of block size | Jack Lloyd | 2017-10-25 | 1 | -2/+12 |
|/ | | | | | | Previously --buf-size was taken as a multiple of the block size, ie --buf-size=5 tested over 5 blocks (rather than 5 bytes, as the output claimed.) | ||||
* | Skip ARM32 specific byteswap code, enable MSVC byteswap intrinsics | Jack Lloyd | 2017-10-24 | 2 | -34/+15 |
| | | | | | | | | | | While older versions of GCC did very badly with __builtin_bswap on ARM, I checked GCC 4.8 and it behaves correctly, emitting either rev or else the same optimal sequence as was used in the inline asm (depending on if ARMv7 is enabled or not.) Enable MSVC byteswap intrinsics, which (hopefully) work on all platforms. Drop the x86-32 specific asm for byteswap. | ||||
* | Fix botan-test --help | Jack Lloyd | 2017-10-24 | 3 | -36/+48 |
| | | | | [ci skip] | ||||
* | Convert http:// links to https:// where possible | Jack Lloyd | 2017-10-24 | 17 | -21/+21 |
| | |||||
* | Add header for std::min | Jack Lloyd | 2017-10-24 | 1 | -0/+1 |
| | |||||
* | Tweak help output a bit | Jack Lloyd | 2017-10-24 | 4 | -35/+53 |
| | |||||
* | Inline Test::run_test into only caller | Jack Lloyd | 2017-10-24 | 3 | -45/+21 |
| | |||||
* | Merge GH #1273 Refactor test and cli runner code | Jack Lloyd | 2017-10-24 | 18 | -973/+1156 |
|\ | |||||
| * | Avoid using namespace, other cleanups | Jack Lloyd | 2017-10-24 | 1 | -27/+24 |
| | | |||||
| * | Refactor option parsing in cli and test code | Jack Lloyd | 2017-10-24 | 18 | -947/+1133 |
| | | | | | | | | Allows cleaning up header includes, also somewhat smaller binaries. | ||||
* | | In cipher tests count IV setup as part of the message cost | Jack Lloyd | 2017-10-24 | 1 | -10/+2 |
| | | | | | | | | Splitting this out gives a misleading perf measurement. | ||||
* | | Avoid "using namespace" in test code | Jack Lloyd | 2017-10-24 | 3 | -64/+51 |
|/ | |||||
* | Merge GH #1263 Support FFDHE negotiation in TLS | Jack Lloyd | 2017-10-22 | 15 | -36/+371 |
|\ | |||||
| * | Remove check for negotiated DH group in TLS client | René Korthaus | 2017-10-20 | 1 | -29/+0 |
| | | | | | | | | | | | | | | The server may not support the supported groups extension and choose an arbitrary group. RFC 7919 permits clients to continue if the group is acceptable under local policy, which we do now. | ||||
| * | Fall back to default group if client does not send any DH groups | René Korthaus | 2017-10-20 | 2 | -2/+19 |
| | | |||||
| * | Add allowed values for allowed groups | René Korthaus | 2017-10-18 | 1 | -3/+13 |
| | | |||||
| * | Add supported groups TLS extension (RFC 7919) | René Korthaus | 2017-10-17 | 16 | -35/+372 |
| | | |||||
* | | Merge GH #1271 Deprecate some exception types | Jack Lloyd | 2017-10-22 | 1 | -3/+3 |
|\ \ | |||||
| * | | deprecate exceptions | Daniel Neus | 2017-10-21 | 1 | -3/+3 |
| | | | |||||
* | | | Merge GH #1270 Support verification of PSS X.509 objects | Jack Lloyd | 2017-10-22 | 239 | -11/+9131 |
|\ \ \ | |/ / |/| | | |||||
| * | | review changes | Daniel Neus | 2017-10-21 | 4 | -235/+235 |
| | | | |||||
| * | | X.509 RSA-PSS verification | Daniel Neus | 2017-10-20 | 239 | -10/+9130 |
| | | | |||||
* | | | Fix for 32-bit Windows | Jack Lloyd | 2017-10-20 | 1 | -4/+4 |
| | | | | | | | | | | | | The buffer is not aligned :/ | ||||
* | | | Add ability to print fingerprint in cert_info cli | Jack Lloyd | 2017-10-20 | 1 | -1/+4 |
| | | | | | | | | | | | | [ci skip] | ||||
* | | | Allow setting CTR width via string | Jack Lloyd | 2017-10-20 | 4 | -6/+32 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Prohibit very small counter widths (under 4 bytes), since they lead to trivial keystream reuse. Add tests. Fix clone which always returned an object with a block-wide counter. | ||||
* | | | Remove redundant check | Jack Lloyd | 2017-10-20 | 1 | -3/+0 |
| | | | | | | | | | | | | | | | | | | CBC mode already has this same size check. [ci skip] | ||||
* | | | Add GHASH using SSSE3 | Jack Lloyd | 2017-10-20 | 5 | -3/+106 |
| | | | | | | | | | | | | About 30% faster than scalar on Skylake | ||||
* | | | Use base CBC modes to implement TLS CBC ciphersuites | Jack Lloyd | 2017-10-19 | 3 | -49/+36 |
| | | | | | | | | | | | | | | | This reduces code and also lets TLS make use of parallel decryption which it was not doing before. | ||||
* | | | Remove unused variable | Jack Lloyd | 2017-10-19 | 1 | -1/+1 |
| | | | |||||
* | | | In speed flush the output stream after each result | Jack Lloyd | 2017-10-19 | 1 | -1/+1 |
| | | | |||||
* | | | Undeprecate these exceptions | Jack Lloyd | 2017-10-19 | 2 | -5/+7 |
| | | | | | | | | | | | | Cannot figure out how to get MSVC to shut up | ||||
* | | | Another attempt at silencing MSVC warning | Jack Lloyd | 2017-10-19 | 2 | -6/+2 |
| | | | |||||
* | | | Appease Sonar | Jack Lloyd | 2017-10-19 | 1 | -1/+1 |
| | | | |||||
* | | | Add a destructor to Policy_Violation | Jack Lloyd | 2017-10-19 | 1 | -3/+4 |
| | | | | | | | | | | | | | | | MSVC produces a deranged warning that the compiler generated destructor is deprecated, try to shut it up. | ||||
* | | | Ignore BOTAN_DEPRECATED in Doxygen config | Jack Lloyd | 2017-10-19 | 1 | -0/+1 |
|/ / | | | | | | | Fixes #1266 | ||||
* | | Merge GH #1262 GCM and CTR optimizations | Jack Lloyd | 2017-10-19 | 13 | -436/+789 |
|\ \ | |||||
| * | | PMULL optimizations | Jack Lloyd | 2017-10-18 | 3 | -61/+192 |
| | | | |||||
| * | | Further optimizations, and split out GHASH reduction code | Jack Lloyd | 2017-10-18 | 3 | -87/+57 |
| | | | |||||
| * | | GCM and CTR optimizations | Jack Lloyd | 2017-10-18 | 11 | -372/+624 |
| |/ | | | | | | | | | | | | | | | | | | | | | In CTR, special case for counter widths of special interest. In GHASH, uses a 4x reduction technique suggested by Intel. Split out GHASH to its own source file and header. With these changes GCM is over twice as fast on Skylake and about 50% faster on Westmere. | ||||
* | | Use conditional include in demaphore.h | Simon Warta | 2017-10-19 | 1 | -1/+1 |
| | |