-
-
Notifications
You must be signed in to change notification settings - Fork 761
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into sbgp-extension
- Loading branch information
Showing
51 changed files
with
1,384 additions
and
419 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,76 @@ | |
|
||
## [Unreleased] | ||
|
||
## [v0.9.99] - 2024-01-19 | ||
|
||
### Added | ||
|
||
* On macOS added Homebrew's `[email protected]` to the list of candidates to build against. | ||
* `NID_brainpoolP256r1`, `NID_brainpoolP320r1`, `NID_brainpoolP384r1`, and `NID_brainpoolP512r1` are now available on LibreSSL. | ||
|
||
### Changed | ||
|
||
* `X509_PURPOSE` is now opaque on LibreSSL 3.9.0+. | ||
|
||
## [v0.9.98] - 2023-12-22 | ||
|
||
### Added | ||
|
||
* Added `RAND_priv_bytes`. | ||
* Added `NID_brainpoolP320r1`. | ||
|
||
### Changed | ||
|
||
* `X509_PURPOSE_get0` now returns a `const` pointer on LibreSSL 3.9.0+. | ||
* `X509V3_EXT_add_alias` is removed on LibreSSL 3.9.0+. | ||
|
||
## [v0.9.97] - 2023-12-04 | ||
|
||
### Changed | ||
|
||
* libatomic is no longer dynamically linked for 32 bit ARM targets. | ||
|
||
### Added | ||
|
||
* Added `SSL_read_ex`, `SSL_peek_ex`, and `SSL_write_ex`. | ||
|
||
## [v0.9.96] - 2023-11-22 | ||
|
||
### Changed | ||
|
||
* `EVP_chacha20` is now available on LibreSSL | ||
|
||
### Added | ||
|
||
* 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` | ||
* Added `X509_STORE_get1_all_certs` | ||
* Added `SSL_CTRL_GET_PEER_TMP_KEY`, `SSL_CTRL_GET_TMP_KEY`, `SSL_get_peer_tmp_key`, `SSL_get_tmp_key` | ||
|
||
## [v0.9.95] - 2023-11-03 | ||
|
||
### Changed | ||
|
||
* Fixed the availability of `EVP_PKEY_RSA_PSS` on OpenSSL | ||
|
||
### Added | ||
|
||
* Added support for LibreSSL 3.8.x. | ||
* Added `NID_chacha20_poly1305` | ||
|
||
## [v0.9.94] - 2023-11-01 | ||
|
||
### Changed | ||
|
||
* `X509_ALGOR` is now opaque on new LibreSSL releases | ||
|
||
### Added | ||
|
||
* Added support for building with `OPENSSL_NO_SCRYPT` | ||
* Added `EVP_PKEY_RSA_PSS` and `EVP_PKEY_DHX` | ||
* Functions and constants for using HKDF `EVP_PKEY` are now available on LibreSSL. | ||
* Added `SSL_CTX_set_security_level`, `SSL_set_security_level`, `SSL_CTX_get_security_level`, `SSL_get_security_level` | ||
* Added `X509_check_host`, `X509_check_email`, `X509_check_ip`, `X509_check_ip_asc` | ||
|
||
## [v0.9.93] - 2023-09-04 | ||
|
||
### Changed | ||
|
@@ -508,7 +578,13 @@ Fixed builds against OpenSSL built with `no-cast`. | |
* Added `X509_verify` and `X509_REQ_verify`. | ||
* Added `EVP_MD_type` and `EVP_GROUP_get_curve_name`. | ||
|
||
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93..master | ||
[Unreleased]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.99..master | ||
[v0.9.99]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.98...openssl-sys-v0.9.99 | ||
[v0.9.98]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.97...openssl-sys-v0.9.98 | ||
[v0.9.97]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.96...openssl-sys-v0.9.97 | ||
[v0.9.96]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.95...openssl-sys-v0.9.96 | ||
[v0.9.95]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.94...openssl-sys-v0.9.95 | ||
[v0.9.94]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.94 | ||
[v0.9.93]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.92...openssl-sys-v0.9.93 | ||
[v0.9.92]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.91...openssl-sys-v0.9.92 | ||
[v0.9.91]: https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.90...openssl-sys-v0.9.91 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "openssl-sys" | ||
version = "0.9.93" | ||
version = "0.9.99" | ||
authors = [ | ||
"Alex Crichton <[email protected]>", | ||
"Steven Fackler <[email protected]>", | ||
|
@@ -23,7 +23,7 @@ libc = "0.2" | |
bssl-sys = { version = "0.1.0", optional = true } | ||
|
||
[build-dependencies] | ||
bindgen = { version = "0.64.0", optional = true, features = ["experimental"] } | ||
bindgen = { version = "0.65.0", optional = true, features = ["experimental"] } | ||
cc = "1.0.61" | ||
openssl-src = { version = "300.1.2", optional = true, features = ["legacy"] } | ||
pkg-config = "0.3.9" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ pub fn get_openssl(target: &str) -> (Vec<PathBuf>, PathBuf) { | |
} | ||
|
||
fn resolve_with_wellknown_homebrew_location(dir: &str) -> Option<PathBuf> { | ||
let versions = ["openssl@3", "[email protected]"]; | ||
let versions = ["openssl@3", "openssl@3.0", "openssl@1.1"]; | ||
|
||
// Check up default aarch 64 Homebrew installation location first | ||
// for quick resolution if possible. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.