Releases: sfackler/rust-openssl
Releases · sfackler/rust-openssl
v0.9.11
v0.9.10
v0.9.9
v0.9.8
v0.9.7
- Add OCSP support.
- Add AES IGE support.
- Add chacha20 and chacha20_poly1305 support.
- Add
EcGroup::set_asn1_flag
- Add PKCS #12 creation support.
- Make sure not to pass system directories to rustc
- More correctly determine OpenSSL feature configuration.
- Add configurability to sign/verify APIs.
- Use
foreign_types
crate. - Add accessors to X509 signature and signature algorithm.
- Deprecate
X509Generator
in favor ofX509Builder
andX509ReqBuilder
.
v0.9.6
v0.9.5
v0.9.4
v0.9.3
v0.9.2
- Add constructors and accessors to
PKey
. - Support PEM and DER encoding and decoding everywhere.
- Add
PKey::bits
. - Add
SslRef::set_tmp_{ec,}dh_callback
andSslContextBuilder::set_tmp_{ec,}dh_callback
methods. - Add basic access to the
X509_STORE
inSslContextBuilder
. - Add constructors for standard primes to
BigNum
. - Add a method to
SslConnector
that does not perform hostname verification. - Use the ffdhe2048 standardized DH parameters in mozilla_intermediate configuration of
SslAcceptor
. - Add support to decode and encode encrypted private keys.
- Add basic elliptic curve functionality.
- Move
ec_key
module toec
. - Implement
Clone
forSslConnector
andSslAcceptor
. - Add certificate and private key accessors to
SslContext
andSsl
.