aboutsummaryrefslogtreecommitdiff
path: root/openssl/src/ssl/test.rs
Commit message (Collapse)AuthorAgeFilesLines
* Add test for stateless connectionBenjamin Saunders2018-03-281-2/+119
|
* Remove version-specific featuresSteven Fackler2018-03-191-36/+27
| | | | Closes #852
* Generic custom extension add fn return typeBenjamin Saunders2018-03-101-2/+2
|
* High-level API for OpenSSL 1.1.1 custom extension supportBenjamin Saunders2018-03-091-0/+38
|
* Add min/max protocol version supportSteven Fackler2018-02-251-0/+33
|
* Add RFC 5705 supportSteven Fackler2018-02-231-0/+42
|
* SSL session callbacks have always been aroundSteven Fackler2018-02-161-4/+1
|
* Add more session cache supportSteven Fackler2018-02-151-0/+36
|
* Tweak featuresSteven Fackler2018-02-141-13/+25
| | | | We should keep the version features totally separate for now.
* Fix tests for TLS 1.3Steven Fackler2018-02-141-2/+5
| | | | | Google yells at you when using TLS 1.3 without SNI by sending a bogus self-signed cert!
* OpenSSL 1.1.1 supportSteven Fackler2018-02-131-1/+15
|
* tests: if server failed to start, print exit code instead of timing outStepan Koltsov2018-01-241-1/+4
| | | | | | | | | | | | | | | | | | | | | | | ``` % cargo +stable test --lib ssl::test::test_connect_with_alpn_successful_single_match --features=v102 Finished dev [unoptimized + debuginfo] target(s) in 0.0 secs Running /Users/nga/devel/left/rust-openssl/target/debug/deps/openssl-a38e12a3527f6932 running 1 test test ssl::test::test_connect_with_alpn_successful_single_match ... FAILED failures: ---- ssl::test::test_connect_with_alpn_successful_single_match stdout ---- thread 'ssl::test::test_connect_with_alpn_successful_single_match' panicked at 'server exited: exit code: 1', src/ssl/test.rs:91:24 note: Run with `RUST_BACKTRACE=1` for a backtrace. failures: ssl::test::test_connect_with_alpn_successful_single_match test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 159 filtered out ```
* Rename key serialization/deserialization methodsSteven Fackler2018-01-061-2/+2
| | | | | | Also document their specific formats. Closes #502
* Move X509Filetype to SslFiletypeSteven Fackler2018-01-011-22/+22
| | | | | | These constants have the same values, but X509_FILETYPE_DEFAULT doesn't work in the Ssl methods and using the SSL_* names is a bit less confusing.
* Add a parameter to servernameSteven Fackler2017-12-281-1/+1
|
* Overhaul ALPNSteven Fackler2017-12-271-99/+23
| | | | | | | | There was previously a lot of behind the scenes magic. We now bind much more directly to the relevant functions. Also remove APN support. That protocol is supersceded by ALPN - let's see if anyone actually needs to use it.
* Overhaul ssl errorSteven Fackler2017-12-261-0/+1298