Unverified Commit 04aa578b authored by Steven Fackler's avatar Steven Fackler
Browse files

Release openssl v0.10.41

parent 6eb34eb7
Loading
Loading
Loading
Loading
+16 −1
Original line number Diff line number Diff line
@@ -2,6 +2,20 @@

## [Unreleased]

## [v0.10.41] - 2022-06-09

### Fixed

* Fixed a use-after-free in `Error::function` and `Error::file` with OpenSSL 3.x.

### Added

* Added `MessageDigest::block_size` and `MdRef::block_size`.
* Implemented `Ord` and `Eq` for `X509` and `X509Ref`.
* Added `X509Extension::add_alias`.
* Added SM4 support.
* Added `EcGroup::from_components` `EcGropuRef::set_generator`, and `EcPointRef::set_affine_coordinates_gfp`.

## [v0.10.40] - 2022-05-04

### Fixed
@@ -599,7 +613,8 @@

Look at the [release tags] for information about older releases.

[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.40...master
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.41...master
[v0.10.41]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.40...openssl-v0.10.41
[v0.10.40]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.39...openssl-v0.10.40
[v0.10.39]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.38...openssl-v0.10.39
[v0.10.38]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.37...openssl-v0.10.38
+2 −2
Original line number Diff line number Diff line
[package]
name = "openssl"
version = "0.10.40"
version = "0.10.41"
authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "Apache-2.0"
description = "OpenSSL bindings"
@@ -28,7 +28,7 @@ libc = "0.2"
once_cell = "1.5.2"

openssl-macros = { version = "0.1.0", path = "../openssl-macros" }
ffi = { package = "openssl-sys", version = "0.9.73", path = "../openssl-sys" }
ffi = { package = "openssl-sys", version = "0.9.75", path = "../openssl-sys" }

[dev-dependencies]
hex = "0.3"