Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix some cast warnings from Sonar | Jack Lloyd | 2017-10-01 | 2 | -9/+12 |
| | |||||
* | Use explicit :: or std:: to refer to functions in namespaces | Jack Lloyd | 2017-10-01 | 1 | -1/+1 |
| | |||||
* | Remove 2048-bit keygen tests | Jack Lloyd | 2017-10-01 | 2 | -2/+2 |
| | | | | Slow, and doesn't buy us much vs just the 1024 bit test. | ||||
* | Address some MSVC warnings | Jack Lloyd | 2017-09-30 | 1 | -1/+1 |
| | |||||
* | Windows!!!!!!! | Jack Lloyd | 2017-09-29 | 1 | -1/+1 |
| | |||||
* | Work around some MSVC 2013 sillyness | Jack Lloyd | 2017-09-29 | 1 | -1/+3 |
| | |||||
* | Ensure files are closed before trying to remove it | Jack Lloyd | 2017-09-29 | 1 | -0/+4 |
| | | | | Windows ... | ||||
* | Avoid using std::rand in test code | Jack Lloyd | 2017-09-29 | 1 | -2/+4 |
| | | | | It makes static analyzers mad | ||||
* | Check return value of std::remove in test | Jack Lloyd | 2017-09-29 | 1 | -2/+5 |
| | | | | Coverity find | ||||
* | Fix test error if mceies disabled | Jack Lloyd | 2017-09-29 | 1 | -3/+5 |
| | | | | [ci skip] | ||||
* | Avoid crash in DLIES tests if AEADs disabled | Jack Lloyd | 2017-09-29 | 1 | -0/+6 |
| | |||||
* | Unused variable | Jack Lloyd | 2017-09-29 | 1 | -1/+1 |
| | | | | [ci skip] | ||||
* | In TLS CBC padding check, only need to verify last 256 bytes | Jack Lloyd | 2017-09-29 | 1 | -2/+26 |
| | | | | | No reason to scan the entire record since it's assured at most 256 bytes of padding are used. Inspired by GH #1227 | ||||
* | Add a test of TLS CBC padding verification | Jack Lloyd | 2017-09-29 | 2 | -0/+76 |
| | | | | See also GH #1227 | ||||
* | Further header cleanups | Jack Lloyd | 2017-09-28 | 11 | -13/+35 |
| | |||||
* | Make poly_dbl.h a submodule of utils | Jack Lloyd | 2017-09-27 | 1 | -1/+8 |
| | | | | | Only required by a few modules and if none of them are in use then the whole thing can just be skipped from the build. | ||||
* | Merge GH #1226 Add HKDF-Expand-Label | Jack Lloyd | 2017-09-27 | 2 | -0/+62 |
|\ | |||||
| * | Add HKDF-Expand-Label | Jack Lloyd | 2017-09-27 | 2 | -0/+62 |
| | | | | | | | | Step 1/n of TLS 1.3 | ||||
* | | Remove OutputLen parameter from KDF test data | Jack Lloyd | 2017-09-27 | 12 | -1405/+3 |
|/ | | | | | We already know how long the output should be, it should match the test vector :) | ||||
* | Add a GCD test | Jack Lloyd | 2017-09-25 | 3 | -0/+34 |
| | |||||
* | Improve test coverage slightly and correct macro | Jack Lloyd | 2017-09-25 | 1 | -8/+3 |
| | |||||
* | Fix for threadless builds | Jack Lloyd | 2017-09-25 | 1 | -0/+5 |
| | | | | [ci skip] | ||||
* | Test SIV multi-AD function | Jack Lloyd | 2017-09-24 | 2 | -0/+102 |
| | |||||
* | Better tests for SIV | Jack Lloyd | 2017-09-24 | 2 | -12/+1631 |
| | | | | | | | | | | | | Correct errors in the AEAD tests that assumed process/update always return something - that isn't true for SIV Minor optimizations in CMAC and CTR to cache the block size instead of making a zillion virtual calls for it. Generalize SIV slightly to where it could support a non-128 bit cipher, but don't pull the trigger on it since I can't find any implementations to crosscheck with. | ||||
* | Move passhash9 and bcrypt tests to passhash/ subdir | Jack Lloyd | 2017-09-24 | 3 | -2/+2 |
| | | | | [ci skip] | ||||
* | Move ocb test data to ocb/ subdir | Jack Lloyd | 2017-09-24 | 4 | -3/+3 |
| | | | | [ci skip] | ||||
* | Further build/test fixes for restricted configurations | Jack Lloyd | 2017-09-24 | 15 | -28/+121 |
| | |||||
* | Refactor how test RNG is created | Jack Lloyd | 2017-09-24 | 1 | -81/+82 |
| | |||||
* | Test fixes | Jack Lloyd | 2017-09-24 | 2 | -1/+4 |
| | |||||
* | Additional test fixes | Jack Lloyd | 2017-09-23 | 1 | -8/+8 |
| | |||||
* | Fix test compile error when filters is enabled but codec_filt is not | René Korthaus | 2017-09-23 | 1 | -1/+1 |
| | |||||
* | Deprecate modification of Pipe objects | Jack Lloyd | 2017-09-22 | 1 | -11/+23 |
| | | | | | This is a feature that is hairy to implement and really makes application code confusing. | ||||
* | Reject very small inputs to the package transform | Jack Lloyd | 2017-09-22 | 1 | -30/+32 |
| | | | | Causes breakage - #825 | ||||
* | Update cryptobox decryption | Jack Lloyd | 2017-09-22 | 1 | -5/+21 |
| | |||||
* | Cryptobox code modernization | Jack Lloyd | 2017-09-22 | 1 | -22/+20 |
| | | | | Only encrypt so it's easy to verify everything still works. | ||||
* | Slight improvements to RNG tests | Jack Lloyd | 2017-09-22 | 1 | -3/+3 |
| | |||||
* | Improve compression tests slightly | Jack Lloyd | 2017-09-22 | 1 | -2/+14 |
| | | | | | | Fix a bug that affected bzip2 - the bzip2 library does not like being called with avail_in == 0 and BZ_RUN, it returns PARAM_ERROR. Just return in that case and ignore the call. | ||||
* | Test reading an invalid message number from a Pipe | Jack Lloyd | 2017-09-22 | 1 | -0/+4 |
| | |||||
* | Test a couple more functions of PKCS11_RNG | Jack Lloyd | 2017-09-22 | 1 | -1/+9 |
| | |||||
* | Test a couple of SecureQueue functions | Jack Lloyd | 2017-09-22 | 1 | -0/+4 |
| | |||||
* | Avoid using namespace in test | Jack Lloyd | 2017-09-22 | 1 | -5/+3 |
| | |||||
* | Add some tests of the test framework itself | Jack Lloyd | 2017-09-22 | 1 | -0/+148 |
| | | | | | | | | | Nothing more embarrasing than a test that fails but that doesn't get percolated up to an actual failure result due to a bug in the test code itself. (This happened a couple of times in the 1.10 test suite, and I've run into it on other projects as well...) | ||||
* | Additional finals | Jack Lloyd | 2017-09-22 | 1 | -3/+3 |
| | |||||
* | Add final annotations as appropriate in the test code | Jack Lloyd | 2017-09-22 | 72 | -155/+155 |
| | |||||
* | Remove some using declarations in test code | Jack Lloyd | 2017-09-22 | 4 | -32/+30 |
| | |||||
* | Add a test of Pipe io on Unix file descriptors | Jack Lloyd | 2017-09-21 | 1 | -0/+37 |
| | |||||
* | More include header cleanups | Jack Lloyd | 2017-09-21 | 20 | -33/+10 |
| | |||||
* | Header file cleanups | Jack Lloyd | 2017-09-21 | 4 | -0/+4 |
| | | | | Some help from include-what-you-use | ||||
* | Fix the SM2 FFI test | Jack Lloyd | 2017-09-21 | 1 | -3/+4 |
| | |||||
* | Update SM2 to use ASN.1 encoding for ciphertexts | Jack Lloyd | 2017-09-20 | 3 | -5/+39 |
| | | | | | | | | | There are in fact 3 different variations of SM2 standard, first C1||C2||C3, then C1||C3||C2, then (most recently) an ASN.1 encoding. This makes us compatible with GmSSL This work was sponsored by Ribose Inc (@riboseinc). |