Skip to content

Commit 64ee33c

Browse files
committed
Release openssl v0.10.60 and openssl-sys v0.9.96
1 parent f456b60 commit 64ee33c

File tree

4 files changed

+38
-5
lines changed

4 files changed

+38
-5
lines changed

openssl-sys/CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
## [Unreleased]
44

5+
## [v0.9.96] - 2023-11-22
6+
7+
### Changed
8+
9+
* `EVP_chacha20` is now available on LibreSSL
10+
11+
### Added
12+
13+
* Added `EVP_des_ede3_ecb`, `EVP_des_ede3_cfb8`, `EVP_des_ede3_ofb`, `EVP_camellia_128_ofb`, `EVP_camellia_192_ofb`, `EVP_camellia_256_ofb`, `EVP_cast5_ofb`, `EVP_idea_ofb`
14+
* Added `X509_STORE_get1_all_certs`
15+
* Added `SSL_CTRL_GET_PEER_TMP_KEY`, `SSL_CTRL_GET_TMP_KEY`, `SSL_get_peer_tmp_key`, `SSL_get_tmp_key`
16+
517
## [v0.9.95] - 2023-11-03
618

719
### Changed
@@ -533,7 +545,8 @@ Fixed builds against OpenSSL built with `no-cast`.
533545
* Added `X509_verify` and `X509_REQ_verify`.
534546
* Added `EVP_MD_type` and `EVP_GROUP_get_curve_name`.
535547

536-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.95..master
548+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96..master
549+
[v0.9.96]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.95...openssl-sys-v0.9.96
537550
[v0.9.95]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.94...openssl-sys-v0.9.95
538551
[v0.9.94]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.94
539552
[v0.9.93]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93

openssl-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openssl-sys"
3-
version = "0.9.95"
3+
version = "0.9.96"
44
authors = [
55
"Alex Crichton <[email protected]>",
66
"Steven Fackler <[email protected]>",

openssl/CHANGELOG.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
## [Unreleased]
44

5+
## [v0.10.60] - 2023-11-22
6+
7+
### Deprecated
8+
9+
* Deprecated `X509StoreRef::objects`. It is unsound. All callers should migrate to using `X509StoreRef::all_certificates` instead.
10+
11+
### Added
12+
13+
* Added `X509StoreRef::all_certificates`
14+
* Added `cipher::Cipher::{camellia128_cbc,camellia192_cbc,camellia256_cbc,cast5_cbc,idea_cbc}`
15+
* Added `symm::Cipher::{des_ede3_ecb,des_ede3_cfb8,des_ede3_ofb,camellia_128_ecb,camellia_128_ofb,camellia_128_cfb128,camellia_192_ecb,camellia_192_ofb,camellia_192_cfb128,camellia_256_ecb,camellia_256_ofb,camellia_256_cfb128,cast5_ecb,cast5_ofb,cast5_cfb64,idea_ecb,idea_ofb,idea_cfb64}`
16+
* Added `Crypter::update_unchecked`
17+
* Added `SslRef::{peer_tmp_key,tmp_key}`
18+
19+
### Changed
20+
21+
* `cipher::Cipher::chacha20` is now available on LibreSSL
22+
* `symm::Cipher::chacha20` is now available on LibreSSL
23+
524
## [v0.10.59] - 2023-11-03
625

726
### Added
@@ -825,7 +844,8 @@
825844

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

828-
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.59...master
847+
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.60...master
848+
[v0.10.60]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.59...openssl-v0.10.60
829849
[v0.10.59]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.58...openssl-v0.10.59
830850
[v0.10.58]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.57...openssl-v0.10.58
831851
[v0.10.57]: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.56...openssl-v0.10.57

openssl/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "openssl"
3-
version = "0.10.59"
3+
version = "0.10.60"
44
authors = ["Steven Fackler <[email protected]>"]
55
license = "Apache-2.0"
66
description = "OpenSSL bindings"
@@ -30,7 +30,7 @@ libc = "0.2"
3030
once_cell = "1.5.2"
3131

3232
openssl-macros = { version = "0.1.0", path = "../openssl-macros" }
33-
ffi = { package = "openssl-sys", version = "0.9.95", path = "../openssl-sys" }
33+
ffi = { package = "openssl-sys", version = "0.9.96", path = "../openssl-sys" }
3434

3535
[dev-dependencies]
3636
hex = "0.3"

0 commit comments

Comments
 (0)