diff options
| author | Steven Fackler <[email protected]> | 2018-01-08 20:36:19 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2018-01-08 20:36:19 -0800 |
| commit | 79fb47e9e8365496f3487de6547cc8b84d10e97b (patch) | |
| tree | 23756452b7dbf02685851780ebc8fd8b27041469 | |
| parent | Add a changelog (diff) | |
| download | rust-openssl-79fb47e9e8365496f3487de6547cc8b84d10e97b.tar.xz rust-openssl-79fb47e9e8365496f3487de6547cc8b84d10e97b.zip | |
Add a couple more changes
| -rw-r--r-- | CHANGELOG.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 494c15bf..d0b27788 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -39,6 +39,14 @@ * Shared secret derivation is now handled by the new `derive::Deriver` type rather than `pkey::PKeyContext`, which has been removed. * `ssl::Error` is now no longer an enum, and provides more direct access to the relevant state. +* `SslConnectorBuilder::new` has been moved and renamed to `SslConnector::builder`. +* `SslAcceptorBuilder::mozilla_intermediate` and `SslAcceptorBuilder::mozilla_modern` have been + moved to `SslAcceptor` and no longer take the private key and certificate chain. Install those + manually after creating the builder. +* `X509VerifyError` is now `X509VerifyResult` and can now have the "ok" value. +* `x509::X509FileType` is now `ssl::SslFiletype`. +* Asymmetric key serialization and deserialization methods now document the formats that they + correspond to, and some have been renamed to better indicate that. ### Removed |