| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Remove version-specific features | Steven Fackler | 2018-03-19 | 4 | -143/+125 | |
| | | | | | Closes #852 | |||||
| * | Expose additional cipher and digest accessors | Benjamin Saunders | 2018-03-16 | 1 | -0/+26 | |
| | | ||||||
| * | Add a Sync + Send bound to the custom ext type | Steven Fackler | 2018-03-11 | 2 | -38/+76 | |
| | | | | | | It's stored inside of the Ssl, so this is probably tecnically necessarly? | |||||
| * | Merge branch 'master' into custom-extensions | Steven Fackler | 2018-03-11 | 1 | -0/+3 | |
| |\ | ||||||
| | * | Add one more set of impls | Steven Fackler | 2018-03-10 | 1 | -0/+3 | |
| | | | ||||||
| * | | Generic custom extension add fn return type | Benjamin Saunders | 2018-03-10 | 3 | -30/+30 | |
| | | | ||||||
| * | | High-level API for OpenSSL 1.1.1 custom extension support | Benjamin Saunders | 2018-03-09 | 3 | -0/+207 | |
| |/ | ||||||
| * | Add SslOptions::ENABLE_MIDDLEBOX_COMPAT | Benjamin Saunders | 2018-03-03 | 1 | -0/+7 | |
| | | ||||||
| * | Add min/max protocol version support | Steven Fackler | 2018-02-25 | 2 | -4/+133 | |
| | | ||||||
| * | Restore error stack in cookie callback | Steven Fackler | 2018-02-25 | 1 | -7/+12 | |
| | | ||||||
| * | Expose cookie generate/verify callback setters | Benjamin Saunders | 2018-02-25 | 2 | -0/+95 | |
| | | ||||||
| * | Merge pull request #850 from sfackler/put-error | Steven Fackler | 2018-02-24 | 1 | -12/+12 | |
| |\ | | | | | Add the ability to push errors back onto the error stack. | |||||
| | * | Add the ability to push errors back onto the error stack. | Steven Fackler | 2018-02-24 | 1 | -12/+12 | |
| | | | ||||||
| * | | Add RFC 5705 support | Steven Fackler | 2018-02-23 | 2 | -2/+72 | |
| |/ | ||||||
| * | Actually add version stuff | Steven Fackler | 2018-02-21 | 1 | -2/+16 | |
| | | ||||||
| * | Inline connector constants | Steven Fackler | 2018-02-21 | 1 | -17/+15 | |
| | | ||||||
| * | Don't special case 1.0.1 | Steven Fackler | 2018-02-21 | 1 | -7/+0 | |
| | | | | | It appears that 1.0.1's defaults are actually okay. | |||||
| * | Update SslConnector cipher list | Steven Fackler | 2018-02-20 | 1 | -6/+11 | |
| | | | | | | | | | Based off of python/cpython#3532, we use OpenSSL's default cipher list and turn of things we don't like. This can't be used with 1.0.1, however, which had a poor default set. There, we use the old defaults, with the bits that aren't implemented in 1.0.1 removed (namely TLSv1.3 suites and ChaCha). | |||||
| * | Add some debugging-related bindings | Steven Fackler | 2018-02-17 | 2 | -23/+88 | |
| | | ||||||
| * | Add SSL_version binding | Steven Fackler | 2018-02-17 | 1 | -2/+40 | |
| | | ||||||
| * | Fix session cloning | Steven Fackler | 2018-02-17 | 1 | -1/+1 | |
| | | ||||||
| * | Bind remove and get session callbacks | Steven Fackler | 2018-02-16 | 2 | -1/+101 | |
| | | ||||||
| * | SSL session callbacks have always been around | Steven Fackler | 2018-02-16 | 3 | -12/+2 | |
| | | ||||||
| * | Doc tweak | Steven Fackler | 2018-02-15 | 1 | -1/+1 | |
| | | ||||||
| * | Add more session cache support | Steven Fackler | 2018-02-15 | 3 | -3/+148 | |
| | | ||||||
| * | Tweak features | Steven Fackler | 2018-02-14 | 3 | -29/+56 | |
| | | | | | We should keep the version features totally separate for now. | |||||
| * | Fix tests for TLS 1.3 | Steven Fackler | 2018-02-14 | 1 | -2/+5 | |
| | | | | | | Google yells at you when using TLS 1.3 without SNI by sending a bogus self-signed cert! | |||||
| * | OpenSSL 1.1.1 support | Steven Fackler | 2018-02-13 | 3 | -31/+57 | |
| | | ||||||
| * | tests: if server failed to start, print exit code instead of timing out | Stepan Koltsov | 2018-01-24 | 1 | -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 ``` | |||||
| * | Add setters to ConnectConfiguration | Steven Fackler | 2018-01-11 | 1 | -3/+13 | |
| | | ||||||
| * | Add from conversion | Steven Fackler | 2018-01-10 | 1 | -0/+9 | |
| | | | | | This is needed for tokio-openssl | |||||
| * | Adjust the SNI callback | Steven Fackler | 2018-01-06 | 2 | -19/+30 | |
| | | | | | Brings it more in line with how the raw callback is structured. | |||||
| * | Fix docs | Steven Fackler | 2018-01-06 | 1 | -1/+3 | |
| | | ||||||
| * | Rename key serialization/deserialization methods | Steven Fackler | 2018-01-06 | 2 | -3/+3 | |
| | | | | | | | Also document their specific formats. Closes #502 | |||||
| * | Misc cleanup | Steven Fackler | 2018-01-01 | 1 | -20/+7 | |
| | | ||||||
| * | Move X509Filetype to SslFiletype | Steven Fackler | 2018-01-01 | 2 | -44/+65 | |
| | | | | | | | 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. | |||||
| * | Parameterize keys over what they contain | Steven Fackler | 2017-12-30 | 2 | -28/+34 | |
| | | | | | Closes #790 | |||||
| * | Remove `SslRef::compression` | Steven Fackler | 2017-12-28 | 1 | -24/+0 | |
| | | | | | | TLS compression is extremely deprecated, so no-one should be messing with this in the first place. | |||||
| * | Add a parameter to servername | Steven Fackler | 2017-12-28 | 2 | -9/+25 | |
| | | ||||||
| * | Overhaul ALPN | Steven Fackler | 2017-12-27 | 3 | -293/+146 | |
| | | | | | | | | | 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 error | Steven Fackler | 2017-12-26 | 4 | -351/+150 | |
| | | ||||||
| * | Split X509StoreContextRef::ssl up | Steven Fackler | 2017-12-26 | 1 | -5/+5 | |
| | | ||||||
| * | Overhaul verify error type | Steven Fackler | 2017-12-26 | 4 | -40/+41 | |
| | | | | | Also set the error in the hostname verification callback for 1.0.1 | |||||
| * | Adjust SslConnector and SslAcceptor construction | Steven Fackler | 2017-12-26 | 3 | -151/+90 | |
| | | ||||||
| * | Drop Any bounds | Steven Fackler | 2017-12-26 | 3 | -25/+20 | |
| | | ||||||
| * | Remove deprecated APIs | Steven Fackler | 2017-12-25 | 3 | -74/+3 | |
| | | ||||||
| * | Fix a bunch of FIXMEs | Steven Fackler | 2017-12-25 | 5 | -36/+39 | |
| | | ||||||
| * | Tweak default ssl options | Steven Fackler | 2017-12-25 | 1 | -2/+4 | |
| | | ||||||
| * | Fix tests | Steven Fackler | 2017-12-25 | 3 | -14/+14 | |
| | | ||||||
| * | Rename X509FileType to X509Filetype | Steven Fackler | 2017-12-25 | 2 | -24/+24 | |
| | | ||||||