Update Rust crate openssl to 0.10.64 - autoclosed
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
openssl | dependencies | patch |
0.10.58 -> 0.10.64
|
Release Notes
sfackler/rust-openssl (openssl)
v0.10.64
What's Changed
- Make _STACK opaque for LibreSSL >= 3.9.0 by @botovq in https://github.com/sfackler/rust-openssl/pull/2153
- enable x509 verify and groups list for boringssl by @zh-jq in https://github.com/sfackler/rust-openssl/pull/2155
- Cleanup some not-required Path::new invocations by @alex in https://github.com/sfackler/rust-openssl/pull/2158
- fixed a clippy (nightly) warning by @alex in https://github.com/sfackler/rust-openssl/pull/2161
- Bump actions versions by @alex in https://github.com/sfackler/rust-openssl/pull/2162
- Add support for setting the nonce type and digest on a PKEY_CTX by @facutuesca in https://github.com/sfackler/rust-openssl/pull/2144
- rebuild openssl-sys if the underlying openssl has changed by @reaperhulk in https://github.com/sfackler/rust-openssl/pull/2157
- Added binding for EVP_default_properties_enable_fips by @alex in https://github.com/sfackler/rust-openssl/pull/2168
- LibreSSL 3.9: fix CRYPTO_malloc/free signatures by @botovq in https://github.com/sfackler/rust-openssl/pull/2170
- Expose alias on X509 structs by @alex in https://github.com/sfackler/rust-openssl/pull/2167
- bump openssl and openssl-sys + changelogs by @reaperhulk in https://github.com/sfackler/rust-openssl/pull/2175
Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.63...openssl-v0.10.64
v0.10.63
What's Changed
- Allow passing a passphrase callback when loading a public key by @alex in https://github.com/sfackler/rust-openssl/pull/2135
- Expose several additional ciphers for symmetry with symm by @alex in https://github.com/sfackler/rust-openssl/pull/2140
- brew: add openssl@3.0 (for 3.0.x LTS releases) by @chenrui333 in https://github.com/sfackler/rust-openssl/pull/2141
- Add PKey::from_dhx by @alex in https://github.com/sfackler/rust-openssl/pull/2142
- Make X509_PURPOSE opaque for LibreSSL >= 3.9.0 by @botovq in https://github.com/sfackler/rust-openssl/pull/2145
- PEM parsing: check last error instead of first by @botovq in https://github.com/sfackler/rust-openssl/pull/2148
- Expose brainpool NIDs on libressl by @alex in https://github.com/sfackler/rust-openssl/pull/2150
- Add two methods to the PKCS7 API by @facutuesca in https://github.com/sfackler/rust-openssl/pull/2111
- add more boringssl methods by @zh-jq in https://github.com/sfackler/rust-openssl/pull/2138
- Release openssl v0.10.63 and openssl-sys v0.9.99 by @alex in https://github.com/sfackler/rust-openssl/pull/2152
Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.62...openssl-v0.10.63
v0.10.62
What's Changed
- fixes #2119 -- use ErrorStack abstraction in X.509 error handling by @alex in https://github.com/sfackler/rust-openssl/pull/2120
- Fix building with latest BoringSSL by @alex in https://github.com/sfackler/rust-openssl/pull/2121
- Fix tests on macOS by @alex in https://github.com/sfackler/rust-openssl/pull/2123
- Upcoming API changes in LibreSSL 3.9 by @botovq in https://github.com/sfackler/rust-openssl/pull/2124
- Add
rand_priv_bytes
by @overvenus in https://github.com/sfackler/rust-openssl/pull/2126 - Add nid constant for curve brainpoolP320r1 by @nicklaswj in https://github.com/sfackler/rust-openssl/pull/2129
- Release openssl v0.10.62 and openssl-sys v0.9.98 by @alex in https://github.com/sfackler/rust-openssl/pull/2133
New Contributors
- @overvenus made their first contribution in https://github.com/sfackler/rust-openssl/pull/2126
- @nicklaswj made their first contribution in https://github.com/sfackler/rust-openssl/pull/2129
Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.61...openssl-v0.10.62
v0.10.61
: openssl v0.10.61
v0.10.60
What's Changed
- Correct off-by-one in minimum output buffer size computation by @alex in https://github.com/sfackler/rust-openssl/pull/2088
- Expose a few more (bad) ciphers in cipher::Cipher by @alex in https://github.com/sfackler/rust-openssl/pull/2084
- add temp key bindings by @jmayclin in https://github.com/sfackler/rust-openssl/pull/2076
- Expose ChaCha20 on LibreSSL by @alex in https://github.com/sfackler/rust-openssl/pull/2093
- Revert "Correct off-by-one in minimum output buffer size computation" by @alex in https://github.com/sfackler/rust-openssl/pull/2090
- Added
update_unchecked
tosymm::Crypter
by @alex in https://github.com/sfackler/rust-openssl/pull/2100 - fixes #2096 -- deprecate
X509StoreRef::objects
, it is unsound by @alex in https://github.com/sfackler/rust-openssl/pull/2099 - Don't leak when overwriting ex data by @sfackler in https://github.com/sfackler/rust-openssl/pull/2102
- Release openssl v0.10.60 and openssl-sys v0.9.96 by @alex in https://github.com/sfackler/rust-openssl/pull/2104
Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.59...openssl-v0.10.60
v0.10.59
What's Changed
- Add binding to NID of Chacha20-Poly1305 cipher by @Arnavion in https://github.com/sfackler/rust-openssl/pull/2081
- Fixed cfg for RSA_PSS by @alex in https://github.com/sfackler/rust-openssl/pull/2079
- fixes #2050 -- build and test on libressl 3.8.2 by @alex in https://github.com/sfackler/rust-openssl/pull/2082
- Release openssl v0.10.59 and openssl-sys v0.9.95 by @alex in https://github.com/sfackler/rust-openssl/pull/2083
New Contributors
- @Arnavion made their first contribution in https://github.com/sfackler/rust-openssl/pull/2081
Full Changelog: https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.58...openssl-v0.10.59
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.