summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/interop/libressl (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add to *FLAGS and *ADD rather than overwriting themtb2020-12-251-6/+6
| | | | | This makes CFLAGS pick up -O2, which shaves a few seconds runtime off these very slow tests.
* Remove echo headlines.bluhm2020-12-171-4/+1
|
* Connect a client to a server. Both can be current libressl, orbluhm2020-09-141-1/+2
| | | | | | | openssl 1.0.2, or openssl 1.1. Pin client or server to a fixed TLS version number. Incompatible versions must fail. Check that client and server have used correct version by grepping in their session print out.
* Revise regress for TLSv1.3 server being enabled.jsing2020-05-111-4/+3
|
* Reorganize libssl interop tests. Move netcat tests into separatebluhm2018-11-111-19/+11
| | | | | directory. Keep all log files for easier debugging. Name regress target names consistently.
* The cert subdir is testing all combinations of certificate validation.bluhm2018-11-091-1/+8
| | | | | | Having the three libraries, client and server certificates, missing or invalid CA or certificates, and enforcing peer certificate results in 1944 new test cases.
* Add a self test for each SSL library by connecting client withbluhm2018-11-071-3/+16
| | | | | | server. Check that the highest available TLS version is selected. LibreSSL TLS 1.3 check is disabled until the feature becomes available.
* Print SSLeay, OpenSSL, and LibreSSL version strings. Make clientbluhm2018-11-071-1/+6
| | | | | and server compile with OpenSSL 1.1. Check runtime version string of SSL library.
* Test TLS interoperability between LibreSSL and OpenSSL.bluhm2018-11-071-0/+20
Implement simple SSL client and server in C. Create four binaries by linking them with LibreSSL or OpenSSL. This way API compatibility is tested. Connect and accept with netcat to test protocol compatibility with libtls. Currently OpenSSL 1.0.2p from ports is used. Plan is to move to OpenSSL 1.1 and and test TLS 1.3. idea from beck@; help from jsing@