aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Add ChaCha_RNGJack Lloyd2017-07-318-48/+442
|
* Merge GH #1133 Fix MSVC compiler detection fixing #1125Jack Lloyd2017-07-312-0/+82
|\
| * Use _MSC_VER to get MSVC versionSimon Warta2017-07-302-13/+11
| |
| * Adapt MSVC version regexp to non-english outputsSimon Warta2017-07-301-0/+9
| |
| * Fix compiler version matching patternsSimon Warta2017-07-301-0/+8
| |
| * Refactor and test compiler version detectionSimon Warta2017-07-301-0/+67
| |
* | Merge GH #1134 Run pylint on install.pyJack Lloyd2017-07-312-23/+35
|\ \
| * | Deduplicate pylint arguments in lint.shSimon Warta2017-07-301-7/+11
| | |
| * | Run pylint on install.py in CISimon Warta2017-07-301-0/+5
| | |
| * | install.py: silence remaining code style issues in main()Simon Warta2017-07-301-0/+1
| | |
| * | install.py: let main() explicitly take arguments and return 0Simon Warta2017-07-301-4/+3
| | |
| * | install.py: pull out calculate_exec_modeSimon Warta2017-07-301-7/+10
| | |
| * | install.py: disable two pylint warnings locallySimon Warta2017-07-301-2/+2
| | |
| * | install.py: fix whitespace issues found by pylintSimon Warta2017-07-301-6/+6
| |/
* | Merge GH #1132 Fix Doxygen errors and add -Wdocumentation flag to clang ↵Jack Lloyd2017-07-3112-18/+14
|\ \ | | | | | | | | | maintainer build
| * | Add missing override annotationJack Lloyd2017-07-281-1/+1
| | |
| * | Fix warnings from clangs -Wdocumentation flagJack Lloyd2017-07-2811-17/+13
| |/
* | Merge GH #1131 Confirm OpenSSL supports curve at runtime before attempting ↵Jack Lloyd2017-07-311-12/+35
|\ \ | | | | | | | | | to use it
| * | Check if curve is built into OpenSSL at runtimeRené Korthaus2017-07-281-12/+35
| |/
* | Add test for FFI keywrap, and constify argsJack Lloyd2017-07-313-9/+46
| |
* | Split up ffi.cpp into several filesJack Lloyd2017-07-3119-2314/+2552
| | | | | | | | | | It was getting pretty big and would get worse over time, eg whenver I get around to adding TLS support.
* | Merge GH #1128 Improve FFI exception safetyJack Lloyd2017-07-315-703/+368
|\ \
| * | Add missing return in ffi_delete_objectJack Lloyd2017-07-251-4/+5
| | | | | | | | | | | | | | | Somehow this still passed all the tests, downside of 0 as the success return I suppose.
| * | Merge commit 'e015fd170' into ffi-fixesJack Lloyd2017-07-253-2/+13
| |\ \ | | | | | | | | | | | | From PR #1097
| | * | Don't crash if openssl can't allocate a new contextKirill A. Korinsky2017-06-293-2/+13
| | | |
| * | | In FFI, check the object magic before deletingJack Lloyd2017-07-251-30/+42
| | | | | | | | | | | | | | | | | | | | Previously any X_destroy function would just delete its arg regardless of whatever the application passed in.
| * | | Better exception guarding in FFIJack Lloyd2017-07-252-671/+312
| | |/ | |/| | | | | | | | | | Based on PR #1097 but I wanted to decrease the verbosity of the resulting code.
* | | Merge GH #1135 Add RFC 3394 keywrap to FFIJack Lloyd2017-07-312-0/+57
|\ \ \ | |/ / |/| |
| * | Move declarations above TLS blockKrzysztof Kwiatkowski2017-07-301-11/+11
| | |
| * | FFI: Add interface for key wrapping with RFC 3394Krzysztof Kwiatkowski2017-06-292-0/+57
| | |
* | | Merge GH #1123 Add OCSP::Response::certificates APIJack Lloyd2017-07-242-0/+36
|\ \ \
| * | | add OCSP::Response::certificates() + unit testRené Meusel2017-07-212-0/+36
| | | |
* | | | Change arbitrary privkey size to a smaller arbitrary number.Jack Lloyd2017-07-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | GH #1122 [ci skip]
* | | | Revert GH #1119 90e8cbbc02 Causes irregular timeouts on TravisJack Lloyd2017-07-241-1/+1
|/ / / | | | | | | | | | [ci skip]
* | | Merge GH #1119 Run full tests on big-endian ppc qemuJack Lloyd2017-07-171-1/+1
|\ \ \
| * | | Enable all tests on ppc32 cross buildJack Lloyd2017-07-161-1/+1
| | | | | | | | | | | | | | | | Ensures big-endian gets tested
* | | | Appease shellcheckJack Lloyd2017-07-171-3/+3
|/ / /
* | | Merge GH #1110 Fix documentation of PKCS11 moduleJack Lloyd2017-07-161-8/+8
|\ \ \
| * | | Remove "pkcs11" provider paramater for pk ops in handbook and testsRené Korthaus2017-07-041-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We have special key types for PKCS#11 public and private keys. When using the PK ops classes, passing the "pkcs11" provider parameter is not necessary, as the PK ops is internally chosen by the PKCS#11 key class, in contrast to other providers such as openssl, which don't have special key classes. Updates the handbook code examples and the tests.
* | | | Merge GH #1116 Fix loading of unencrypted PKCS#8 key via CLIJack Lloyd2017-07-161-10/+16
|\ \ \ \
| * | | | Fix loading of unencrypted PKCS#8 key via CLIRené Korthaus2017-07-111-10/+16
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | CLI passed an emtpy password to PKCS8::load_key(), even if --pass-in was not given, which caused loading of unencrypted private keys to fail. Fixed by calling the corresponding flavour of load_key().
* / / / Fix failure to fully zero memory before freeJack Lloyd2017-07-161-1/+1
|/ / / | | | | | | | | | | | | | | | Introduced in 455bd2557cbb1343e59eefd97cb449f06a702c28 Found and reported by Roman Pozlevich
* | | Merge GH #1093 In EC keys, use OID encoding if possibleJack Lloyd2017-07-031-6/+16
|\ \ \
| * | | ECC: use OID encoding if possiblePatrick Wildt2017-06-301-6/+16
| | | | | | | | | | | | | | | | | | | | | | | | Instead of explicitly encoding the domain, encode them with the OID if the OID is available. This makes the ecdsa_sign test run with OpenSSL, since OpenSSL needs the OID explicitly set.
| * | | Revert previous, we should fix it differently.Patrick Wildt2017-06-301-16/+20
| | | |
| * | | Allow ECDSA tests for OpenSSL by comparing EC GroupsPatrick Wildt2017-06-281-20/+16
| |/ / | | | | | | | | | | | | | | | | | | | | | The ecdsa_sign test does not work for OpenSSL since the public key that is derived from the private key does not store the OID of the curve. Thus, the OpenSSL code cannot find the proper NID for the given public key and cannot do a verification operation. We can fix this by comparing the actual groups and not using the OIDs.
* | | Merge GH #1107 Improve documentation of x509_path_validateJack Lloyd2017-07-031-1/+1
|\ \ \
| * | | Add position of end entity cert in x509_path_validate() doc [ci skip]René Korthaus2017-07-021-1/+1
| | | | | | | | | | | | | | | | | | | | It's not so obvious to a user at which end of the chain the end entity certificate must be placed.
* | | | Merge GH #1106 Fix sign_cert CLI incorrectly handling --ca-key-pass (GH #1104)Jack Lloyd2017-07-031-2/+4
|\ \ \ \
| * | | | Fix sign_cert CLI incorrectly handling --ca-key-passRené Korthaus2017-07-011-2/+4
| |/ / /