| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Switch to accessors in libressl where possible | Steven Fackler | 2018-06-09 | 1 | -1/+1 |
| | | | | | | | | Some accessors are mysteriously still macros so we can't make everything opaque yet, unfortunately. cc #909 | ||||
| * | Overhaul openssl cfgs | Steven Fackler | 2018-05-20 | 1 | -29/+19 |
| | | | | | Also expose hostname verification on libressl | ||||
| * | Remove version-specific features | Steven Fackler | 2018-03-19 | 1 | -11/+7 |
| | | | | | Closes #852 | ||||
| * | Tweak features | Steven Fackler | 2018-02-14 | 1 | -4/+8 |
| | | | | | We should keep the version features totally separate for now. | ||||
| * | OpenSSL 1.1.1 support | Steven Fackler | 2018-02-13 | 1 | -3/+3 |
| | | |||||
| * | Rename key serialization/deserialization methods | Steven Fackler | 2018-01-06 | 1 | -8/+48 |
| | | | | | | | Also document their specific formats. Closes #502 | ||||
| * | Parameterize keys over what they contain | Steven Fackler | 2017-12-30 | 1 | -16/+20 |
| | | | | | Closes #790 | ||||
| * | Clean up 1.0.1 hostname verification | Steven Fackler | 2017-12-23 | 1 | -21/+14 |
| | | |||||
| * | Added a macro that wraps foreign type, and impl Send and Sync for both, | Paul Florence | 2017-11-10 | 1 | -1/+1 |
| | | | | | | the borrowed type and the owned one. Replaced all invocation of `foreign_type` by `foreign_type_and_impl_send_sync`. | ||||
| * | Convert try! usage to ? | johnthagen | 2017-10-03 | 1 | -3/+3 |
| | | |||||
| * | Delete DTLS tests | Steven Fackler | 2017-08-08 | 1 | -4/+4 |
| | | |||||
| * | Init in Dh constructors | Steven Fackler | 2017-07-30 | 1 | -4/+12 |
| | | |||||
| * | Rustfmt | Steven Fackler | 2017-07-15 | 1 | -15/+24 |
| | | |||||
| * | Switch to foreign_types | Steven Fackler | 2017-02-03 | 1 | -2/+9 |
| | | |||||
| * | Macroise from_pem | Steven Fackler | 2016-11-13 | 1 | -14/+1 |
| | | |||||
| * | Macroise to_pem | Steven Fackler | 2016-11-13 | 1 | -10/+2 |
| | | |||||
| * | Macroise from_der | Steven Fackler | 2016-11-13 | 1 | -11/+1 |
| | | |||||
| * | Macroise to_der | Steven Fackler | 2016-11-13 | 1 | -9/+1 |
| | | |||||
| * | Consistently support both PEM and DER encodings | Steven Fackler | 2016-11-11 | 1 | -9/+39 |
| | | | | | Closes #500 | ||||
| * | Get rid of Ref | Steven Fackler | 2016-11-04 | 1 | -3/+3 |
| | | | | | | There's unfortunately a rustdoc bug that causes all methods implemented for any Ref<T> to be inlined in the deref methods section :( | ||||
| * | Use built in DH parameters when available | Steven Fackler | 2016-11-01 | 1 | -1/+15 |
| | | | | | | Fall back to a hardcoded PEM blob on 1.0.1, but serialized from DH_get_2048_256. | ||||
| * | Convert Dh | Steven Fackler | 2016-10-31 | 1 | -29/+2 |
| | | |||||
| * | Expose SSL_MODEs | Steven Fackler | 2016-10-30 | 1 | -4/+1 |
| | | |||||
| * | Rustfmt | Steven Fackler | 2016-10-30 | 1 | -19/+10 |
| | | |||||
| * | Configure ECDH parameters in connector | Steven Fackler | 2016-10-30 | 1 | -6/+26 |
| | | |||||
| * | Camel case DH | Steven Fackler | 2016-10-27 | 1 | -20/+20 |
| | | |||||
| * | Don't allow mutation of SslContexts | Steven Fackler | 2016-10-25 | 1 | -3/+3 |
| | | | | | | | SslContext is reference counted and the various setter methods don't take out locks where necessary. Fix this by adding a builder for the context. | ||||
| * | Implement new feature setup | Steven Fackler | 2016-10-17 | 1 | -4/+7 |
| | | | | | | | | | The basic idea here is that there is a feature for each supported OpenSSL version. Enabling multiple features represents support for multiple OpenSSL versions, but it's then up to you to check which version you link against (probably by depending on openssl-sys and making a build script similar to what openssl does). | ||||
| * | Finish error overhaul | Steven Fackler | 2016-10-16 | 1 | -16/+21 |
| | | |||||
| * | Start on error + BN refactor | Steven Fackler | 2016-10-16 | 1 | -0/+142 |