| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 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 |
| | | |||||
| * | Move to associated consts | Steven Fackler | 2017-12-25 | 2 | -29/+29 |
| | | |||||
| * | Upgrade bitflags to 1.0 | Steven Fackler | 2017-12-25 | 3 | -121/+94 |
| | | | | | Closes #756 | ||||
| * | Clean up 1.0.1 hostname verification | Steven Fackler | 2017-12-23 | 1 | -37/+23 |
| | | |||||
| * | Allow SNI and hostname verification to be configured separately | Steven Fackler | 2017-12-23 | 2 | -70/+101 |
| | | | | | Closes #728 | ||||
| * | Fix link | Steven Fackler | 2017-12-09 | 1 | -1/+1 |
| | | |||||
| * | Finish documentation for the ssl module | Steven Fackler | 2017-12-04 | 3 | -50/+241 |
| | | | | | Closes #727 | ||||
| * | Docs for the ssl module. | Steven Fackler | 2017-12-03 | 1 | -36/+431 |
| | | | | | cc #727 | ||||
| * | Impl deref for acceptor/connector builders | Steven Fackler | 2017-12-03 | 2 | -25/+65 |
| | | |||||
| * | Upgrade foreign-types | Steven Fackler | 2017-11-26 | 1 | -9/+1 |
| | | | | | | foreign-types 0.3 and 0.2 now share the same types and traits, so this is backwards compatible. | ||||
| * | Revert "Update foreign-types to 0.3" | Steven Fackler | 2017-11-21 | 1 | -0/+7 |
| | | |||||
| * | Update foreign-types to 0.3 | Anthony Ramine | 2017-11-21 | 1 | -7/+0 |
| | | |||||
| * | Adjust libressl version detection | Steven Fackler | 2017-11-13 | 2 | -6/+6 |
| | | | | | | The 2.5.3+ and 2.6.3+ series are ABI-stable, so we don't need to whitelist individual releases in those ranges. | ||||
| * | Add support for LibreSSL 2.6.3 | phoebe jenkins | 2017-11-13 | 2 | -6/+6 |
| | | |||||
| * | Add a couple of FIXMEs | Steven Fackler | 2017-11-05 | 1 | -0/+4 |
| | | |||||
| * | Handle local retries | Steven Fackler | 2017-11-04 | 2 | -94/+100 |
| | | | | | | | | | | | | | OpenSSL can return SSL_ERROR_WANT_READ even on blocking sockets after renegotiation or heartbeats. Heartbeats ignore the flag that normally makes these things handled internally anyway on 1.0.2. To handle this more properly, we now have a special error type we use to signal this event. The `Read` and `Write` implementation automatically retry in this situation since that's what you normally want. People can use `ssl_read` and `ssl_write` if they want the lower level control. Closes #760 | ||||
| * | Fixed a typo in an error message, WANT_WRITE -> WANT_READ | Brian Vincent | 2017-10-17 | 1 | -1/+1 |
| | | |||||
| * | Merge pull request #752 from chrisvittal/libressl262 | Steven Fackler | 2017-10-03 | 2 | -6/+6 |
| |\ | | | | | Add support for LibreSSL 2.6.2 | ||||
| | * | Fix cfgs for libressl262 | Christopher Vittal | 2017-10-04 | 2 | -6/+6 |
| | | | |||||
| | * | Add support for LibreSSL 2.6.2 | Christopher Vittal | 2017-10-03 | 1 | -1/+1 |
| | | | |||||
| * | | Convert try! usage to ? | johnthagen | 2017-10-03 | 4 | -47/+47 |
| |/ | |||||
| * | Properly handle IPs in hostname verification | Steven Fackler | 2017-09-20 | 1 | -1/+4 |
| | | |||||
| * | Merge pull request #695 from Keruspe/master | Steven Fackler | 2017-09-17 | 2 | -2/+6 |
| |\ | | | | | openssl-sys: support libressl 2.6.1 | ||||
| | * | openssl: ecdh_tmp_callback doesn't work with libressl 2.6.1 | Marc-Antoine Perennou | 2017-09-17 | 1 | -2/+2 |
| | | | | | | | | | Signed-off-by: Marc-Antoine Perennou <[email protected]> | ||||
| | * | openssl: libressl 2.6.1 dropped suuport for npn | Marc-Antoine Perennou | 2017-09-17 | 2 | -0/+4 |
| | | | | | | | | | Signed-off-by: Marc-Antoine Perennou <[email protected]> | ||||
| * | | Update default client cipher list | Steven Fackler | 2017-09-16 | 1 | -3/+6 |
| | | | |||||
| * | | Fix indentation | Steven Fackler | 2017-09-15 | 1 | -3/+2 |
| | | | |||||
| * | | Set SSL_MODE_RELEASE_BUFFERS by default | Alex Crichton | 2017-09-14 | 1 | -1/+11 |
| |/ | | | | Closes #696 | ||||
| * | Delete DTLS tests | Steven Fackler | 2017-08-08 | 1 | -72/+0 |
| | | |||||
| * | Add peer_cert_chain | Steven Fackler | 2017-07-29 | 1 | -0/+15 |
| | | |||||
| * | Ignore dtls tests | Steven Fackler | 2017-07-29 | 1 | -1/+1 |
| | | | | | | | They're way too flaky. Closes #525 | ||||
| * | Tweak formatting on cipher list | Steven Fackler | 2017-07-26 | 1 | -18/+13 |
| | | |||||