Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge GH #2215 Use .lib suffix consistently on Windows | Jack Lloyd | 2019-12-07 | 8 | -12/+13 |
|\ | |||||
| * | Fix Windows linking to consistently use .lib suffix as required | Jack Lloyd | 2019-12-06 | 8 | -12/+13 |
| | | | | | | | | | | | | Also fix the zlib basename for Windows. Resolves #2210 | ||||
* | | Merge GH #2212 Resolve all MSVC warnings | Jack Lloyd | 2019-12-07 | 69 | -388/+447 |
|\ \ | |||||
| * | | Enable warnings-as-errors build in MSVC | Jack Lloyd | 2019-12-06 | 3 | -6/+13 |
| | | | | | | | | | | | | | | | | | | Except 2015 which has some weird false positives. Closes #2211 | ||||
| * | | Fix pylint warning | Jack Lloyd | 2019-12-06 | 1 | -1/+1 |
| | | | |||||
| * | | Resolve various integer conversion warnings from MSVC | Jack Lloyd | 2019-12-06 | 9 | -13/+15 |
| | | | |||||
| * | | Avoid integer overflow warning | Jack Lloyd | 2019-12-06 | 1 | -2/+9 |
| | | | |||||
| * | | Make CPU probes noexcept | Jack Lloyd | 2019-12-06 | 3 | -12/+12 |
| | | | |||||
| * | | if constexpr is C++17 only | Jack Lloyd | 2019-12-06 | 1 | -1/+1 |
| | | | |||||
| * | | Fix MSVC warning in Newhope | Jack Lloyd | 2019-12-06 | 1 | -1/+1 |
| | | | |||||
| * | | Fix MSVC warnings in PKCS11 | Jack Lloyd | 2019-12-06 | 7 | -29/+45 |
| | | | |||||
| * | | Fix MSVC "optimization" warning about bool conversions | Jack Lloyd | 2019-12-06 | 7 | -19/+19 |
| | | | |||||
| * | | Fix MSVC warnings in socket utils | Jack Lloyd | 2019-12-06 | 2 | -14/+18 |
| | | | |||||
| * | | Fix warnings in CLI socket operations | Jack Lloyd | 2019-12-06 | 3 | -29/+54 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Need to disable tls_client and tls_server here, at least temporarily. tls_client clearly never worked, because select on stdin doesn't work in Winsock. tls_server seems like it would work but has warnings that don't make any sense with certain versions of VC. | ||||
| * | | Fix MSVC warnings in McEliece | Jack Lloyd | 2019-12-06 | 13 | -193/+172 |
| | | | |||||
| * | | Fix MSVC warnings in XMSS | Jack Lloyd | 2019-12-06 | 6 | -19/+20 |
| | | | |||||
| * | | Avoid MSVC warnings about dead code in FFI layer | Jack Lloyd | 2019-12-06 | 12 | -49/+67 |
| |/ | | | | | | | Also fix warning about "insecure" getenv | ||||
* / | Fix some pylint warnings | Jack Lloyd | 2019-12-06 | 2 | -1/+2 |
|/ | |||||
* | Avoid shadow warning in AES vperm code | Jack Lloyd | 2019-12-05 | 1 | -10/+9 |
| | |||||
* | Add documentation for CRL API in FFI and Python binding | Pavol Žáčik | 2019-12-03 | 1 | -13/+20 |
| | |||||
* | Add CRL support for Python binding | Pavol Žáčik | 2019-12-03 | 2 | -22/+107 |
| | |||||
* | Add tests for CRLs in FFI API | Pavol Žáčik | 2019-12-03 | 1 | -0/+77 |
| | |||||
* | Add basic CRL handling to FFI API | Pavol Žáčik | 2019-12-03 | 2 | -0/+181 |
| | |||||
* | Merge GH #2206 Start building GCC/Clang with -Werror in CI | Jack Lloyd | 2019-12-03 | 11 | -25/+48 |
|\ | |||||
| * | Fix PKCS11 warnings | Jack Lloyd | 2019-12-03 | 1 | -3/+5 |
| | | |||||
| * | Add -Werror mode for CI build | Jack Lloyd | 2019-12-03 | 10 | -22/+43 |
| | | |||||
* | | Add missing MPI functions to Python binding | Pavol Žáčik | 2019-12-02 | 2 | -2/+30 |
|/ | |||||
* | attemp_srp is overriding thus marking explicitally | David Carlier | 2019-11-30 | 1 | -1/+1 |
| | |||||
* | Fix unreachable code | Jack Lloyd | 2019-11-25 | 1 | -1/+0 |
| | | | | Flagged by Coverity. | ||||
* | Merge GH #2204 Remove 32-bit x86 asm for MSVC | Jack Lloyd | 2019-11-23 | 2 | -272/+4 |
|\ | |||||
| * | Remove the 32-bit x86 asm for MSVC | Jack Lloyd | 2019-11-23 | 2 | -272/+4 |
| | | | | | | | | The numbers in #256 suggest that it does nothing at all for performance. | ||||
* | | Merge GH #2203 Add basic TLS-SRP test | Jack Lloyd | 2019-11-23 | 1 | -1/+92 |
|\ \ | |||||
| * | | Add a test of TLS-SRP | Jack Lloyd | 2019-11-23 | 1 | -1/+92 |
| |/ | |||||
* / | Export b64_filt.h and hex_filt.h | Jack Lloyd | 2019-11-23 | 2 | -6/+3 |
|/ | | | | | | They have been missing since #1994 Remove empty/useless codec_filt directory | ||||
* | Merge GH #2200 Add S390x build to Travis | Jack Lloyd | 2019-11-16 | 3 | -12/+12 |
|\ | |||||
| * | Add S390x build | Jack Lloyd | 2019-11-15 | 3 | -12/+12 |
| | | | | | | | | | | | | Drop the MIPS build since main purpose of that is to test a big-endian build with no special support (SIMD, etc), but s390x is better for this, since it allows running the full test suite. | ||||
* | | Fix cli ldflags output | Jack Lloyd | 2019-11-15 | 2 | -3/+3 |
|/ | | | | GH #2199 #2109 | ||||
* | Merge GH #2196 Add AVX2 impl of SHACAL2 | Jack Lloyd | 2019-11-15 | 7 | -142/+351 |
|\ | |||||
| * | Add SHACAL2 AVX2 | Jack Lloyd | 2019-11-14 | 7 | -142/+351 |
| | | | | | | | | About 2x faster on Skylake | ||||
* | | Merge GH #2195 Update BSI policy | Jack Lloyd | 2019-11-15 | 2 | -9/+7 |
|\ \ | |||||
| * | | Prefer CCM over CBC ciphersuites | René Korthaus | 2019-11-15 | 2 | -2/+2 |
| | | | |||||
| * | | Remove non-ephemeral PSK ciphersuites from BSI TLS policy | René Korthaus | 2019-11-14 | 2 | -2/+2 |
| | | | |||||
| * | | Add SHA-512 to BSI TLS policy's allowed sigatures hashes | René Korthaus | 2019-11-14 | 2 | -2/+2 |
| | | | |||||
| * | | Add AES-128/CCM and AES-256/CCM ciphersuites to BSI TLS policy | René Korthaus | 2019-11-14 | 2 | -2/+2 |
| | | | | | | | | | | | | | | | BSI TR-02102-1 version 2019-01 added CCM ciphersuites as recommended, so we add them to the BSI TLS policy. | ||||
| * | | Remove some FFDHE groups from BSI TLS policy | René Korthaus | 2019-11-14 | 2 | -3/+1 |
| |/ | | | | | | | | | | | | | BSI TR-02102-2 version 2019-01 explicitly lists the FFDHE groups recommended now. ffdhe6144 and ffdhe8192 are not listed, so we remove them from the BSI TLS policy. | ||||
* | | Merge GH #2194 Add MinGW build to AppVeyor CI | Jack Lloyd | 2019-11-15 | 3 | -13/+32 |
|\ \ | |||||
| * | | Add MinGW on Windows build to AppVeyor CI | Jack Lloyd | 2019-11-13 | 3 | -13/+32 |
| |/ | |||||
* / | Re-enable TLS-CBC in BSI policy | Jack Lloyd | 2019-11-15 | 1 | -1/+0 |
|/ | | | | See discussion in #2188 | ||||
* | Fix TLS-PRF KDF tests when MD5 is disabled | Jack Lloyd | 2019-11-13 | 3 | -3/+13 |
| | |||||
* | Fix TLS PRF and module policy | Jack Lloyd | 2019-11-13 | 3 | -2/+4 |
| | | | | We can firmly disable MD5 now, but not SHA1 since X.509 needs it |