- Add
sync_closekeyword argument toOpenSSL::SSL::SSLSocket.newas a short-hand for settingsync_closeattribute on the createdSSLSocketinstance. [GitHub #955] [GitHub #996]
- Fix uninitialized variables in
OpenSSL::OCSP::BasicResponse#status. [GitHub #1004]
- Ruby >= 2.7
- OpenSSL >= 1.1.1, LibreSSL >= 3.9, and AWS-LC 1.66.0
- Removed support for OpenSSL 1.0.2-1.1.0 and LibreSSL 3.1-3.8. [GitHub #835]
- Added support for AWS-LC. [GitHub #833]
OpenSSL::SSL- Reduce overhead when writing to
OpenSSL::SSL::SSLSocket.#syswriteno longer creates a temporary String object. [GitHub #831] - Make
OpenSSL::SSL::SSLContext#min_version=and#max_version=wrap the corresponding OpenSSL APIs directly, and remove the fallback to SSL options. [GitHub #849] - Add
OpenSSL::SSL::SSLContext#sigalgs=and#client_sigalgs=for specifying signature algorithms to use for connections. [GitHub #895] - Rename
OpenSSL::SSL::SSLContext#ecdh_curves=to#groups=following the underlying OpenSSL API rename. This method is no longer specific to ECDHE. The old method remains as an alias. [GitHub #900] - Add
OpenSSL::SSL::SSLSocket#sigalg,#peer_sigalg, and#groupfor getting the signature algorithm and the key agreement group used in the current connection. [GitHub #908] - Enable
SSL_CTX_set_dh_auto()for servers by default. [GitHub #924] - Improve Ractor compatibility. Note that the internal-use constant
OpenSSL::SSL::SSLContext::DEFAULT_PARAMSis now frozen. [GitHub #925]
- Reduce overhead when writing to
OpenSSL::PKey- Remove
OpenSSL::PKey::EC::Point#mulsupport with array arguments. The underlying OpenSSL API has been removed, and the method has been deprecated since ruby/openssl v3.0.0. [GitHub #843] OpenSSL::PKey::{RSA,DSA,DH}#paramsusesnilto indicate missing fields instead of the number0. [GitHub #774]- Unify
OpenSSL::PKey::PKeyErrorclasses. The former subclassesOpenSSL::PKey::DHError,OpenSSL::PKey::DSAError,OpenSSL::PKey::ECError, andOpenSSL::PKey::RSAErrorhave been merged into a single class. [GitHub #929]
- Remove
OpenSSL::CipherOpenSSL::Cipher#encryptand#decryptno longer accept arguments. Passing passwords has been deprecated since Ruby 1.8.2 (released in 2004). [GitHub #887]OpenSSL::Cipher#finalraisesOpenSSL::Cipher::AuthTagErrorwhen the integrity check fails for AEAD ciphers.OpenSSL::Cipher::AuthTagErroris a new subclass ofOpenSSL::Cipher::CipherError, which was previously raised. [GitHub #939]OpenSSL::Cipher.newnow raisesOpenSSL::Cipher::CipherErrorinstead ofRuntimeErrorwhen OpenSSL does not recognize the algorithm. [GitHub #958]- Add support for "fetched" cipher algorithms with OpenSSL 3.0 or later. [GitHub #958]
OpenSSL::DigestOpenSSL::Digest.newnow raisesOpenSSL::Digest::DigestErrorinstead ofRuntimeErrorwhen OpenSSL does not recognize the algorithm. [GitHub #958]- Add support for "fetched" digest algorithms with OpenSSL 3.0 or later. [GitHub #958]
OpenSSL::ASN1.decodenow assumes a 1950-2049 year range forUTCTimeaccording to RFC 5280. It previously used a 1969-2068 range. The encoder has always used the 1950-2049 range. [GitHub #909]OpenSSL::OpenSSLError, the base class for all ruby/openssl errors, carry an additional attribute#errorsto keep the content of OpenSSL's error queue. Also, add#detailed_messagefor Ruby 3.2 or later. [GitHub #976]OpenSSL::PKCS7.newraisesOpenSSL::PKCS7::PKCS7Errorinstead ofArgumentErroron error to be consistent with other constructors. [GitHub #983]
Merged changes in 3.1.3 and 3.2.3.
Merged changes in 3.1.2 and 3.2.2.
- Ruby version: 2.7 or later
- OpenSSL version: OpenSSL 1.0.2 or later, and LibreSSL 3.1 or later
OpenSSL::SSLOpenSSL::SSL::SSLSocket#set_paramsno longer sets#min_version=to TLS 1.0 except when OpenSSL 1.0.2 is used. This has been done to disable SSL 3.0, which is not supported by default in OpenSSL 1.1.0 or later, or in LibreSSL. This lets it respect the system default if the system-wide configuration file specifies a higher minimum protocol version. [GitHub #710]OpenSSL::SSL::SSLSocket.newno longer enables theOpenSSL::SSL::OP_ALLSSL options by default and follows the system default. [GitHub #767]- Add the following IO methods to
OpenSSL::SSL::SSLSocket, which will pass along to the underlying socket:#local_address,#remote_address,#close_on_exec=,#close_on_exec?,#wait,#wait_readable, and#wait_writable. [GitHub #708] - Update
OpenSSL::SSL::SSLSocket#getsto take thechompkeyword argument. [GitHub #708] - Make
OpenSSL::SSL::SSLSocketrespect theIO#timeoutvalue of the underlying socket on Ruby 3.2 or later.#timeoutand#timeout=methods are also added. [GitHub #714] - Add
OpenSSL::SSL::SSLSocket#close_readand#close_write. [GitHub #743] - Add
OpenSSL::Digest.digeststo get a list of all available digest algorithms. [GitHub #726] - Fix
OpenSSL::SSL::SSLSocket#read_nonblockclearing the passed String buffer when nothing can be read from the connection. [GitHub #739]
- Add
#to_textmethods toOpenSSL::Timestamp::Response,OpenSSL::Timestamp::Request,OpenSSL::Timestamp::TokenInfo, andOpenSSL::PKCS7to get a human-readable representation of the object. [GitHub #756] - Add
OpenSSL::X509::Certificate#tbs_bytesto get the DER encoding of the TBSCertificate. [GitHub #753] - Allow passing
nilas the digest algorithm to#signmethods onOpenSSL::X509::Certificate,OpenSSL::X509::Request, andOpenSSL::X509::CRL. This adds supports for signing with EdDSA keys. [GitHub #761] [GitHub #804] - Add
OpenSSL::SSL::SSLSocket#readbyte. [GitHub #771] - Change
OpenSSL::X509::Store#time=to set the time to theX509_VERIFY_PARAMin theX509_STORE. This allowsOpenSSL::Timestamp::Response#verifyto verify a signature with the specified timestamp. [GitHub #770] - Make
OpenSSL::PKCS7.encrypt's third parameterciphermandatory. It had an undocumented default value "RC2-40-CBC", which is not only insecure, but also not supported in OpenSSL 3.0 or later. [GitHub #796] - Make
OpenSSL::BNshareable between ractors when frozen. [GitHub #808] - Make
OpenSSL::Configinstances frozen by default, and make it shareable between ractors.OpenSSL::Config::DEFAULT_CONFIG_FILEis also frozen. [GitHub #809] - Add
OpenSSL::PKCS12#set_macto configure the MAC parameters and recalculate a MAC for the content. [GitHub #788]
And various non-user-visible changes and bug fixes. Please see the commit history for more details.
Merged changes in 3.1.3.
Merged changes in 3.1.2.
Merged changes in 3.0.3.
- Ruby >= 2.7
- Support for Ruby 2.6 has been removed. Note that Ruby 2.6 reached the end-of-life in 2022-04. [GitHub #639]
- OpenSSL >= 1.0.2 or LibreSSL >= 3.1
- Add a stub gemspec for JRuby, which depends on the
jruby-opensslgem. [GitHub #598] - Add support for the FIPS module in OpenSSL 3.0/3.1. [GitHub #608]
- Rework
OpenSSL::PKeyroutines for loading DER or PEM encoded keys for better compatibility with OpenSSL 3.0/3.1 with the FIPS module. [GitHub #615] [GitHub #669] - Add
OpenSSL::Providermodule for loading and unloading OpenSSL 3 providers. [GitHub #635] - Add
OpenSSL::PKey.new_raw_private_key,.new_raw_public_key,OpenSSL::PKey::PKey#raw_private_key, and#raw_public_keyfor public key algorithms that use "raw private/public key", such as X25519 and Ed25519. [GitHub #646] - Improve OpenSSL error messages to include additional information when it is available in OpenSSL's error queue. [GitHub #648]
- Change
OpenSSL::SSL::SSLContext#ca_file=and#ca_path=to raiseOpenSSL::SSL::SSLErrorinstead of printing a warning message. [GitHub #659] - Allow
OpenSSL::X509::ExtensionFactory#create_extensionto take OIDs in the dotted-decimal notation. [GitHub #141]
- Fix missing NULL check for
EVP_PKEY_get0()functions with OpenSSL 3.x. [GitHub #957]
- Fix crash when attempting to export an incomplete
OpenSSL::PKey::DSAkey. [GitHub #845] [GitHub #847] - Remove the
OpenSSL::X509::V_FLAG_CRL_CHECK_ALLflag from the default store used byOpenSSL::SSL::SSLContext#set_params. It causes certificate verification to fail with OpenSSL 3.6.0. It has no effect with any other OpenSSL versions. [GitHub #949] [GitHub #950]
Merged changes in 3.0.3.
Ruby/OpenSSL 3.1 will be maintained for the lifetime of Ruby 3.2.
Merged bug fixes in 2.2.3 and 3.0.2. Among the new features and changes are:
- Add
OpenSSL::SSL::SSLContext#ciphersuites=to allow setting TLS 1.3 cipher suites. [GitHub #493] - Add
OpenSSL::SSL::SSLSocket#export_keying_materialfor exporting keying material of the session, as defined in RFC 5705. [GitHub #530] - Add
OpenSSL::SSL::SSLContext#keylog_cb=for setting the TLS key logging callback, which is useful for supporting NSS's SSLKEYLOGFILE debugging output. [GitHub #536] - Remove the default digest algorithm from
OpenSSL::OCSP::BasicResponse#signandOpenSSL::OCSP::Request#sign. Omitting the 5th parameter of these methods used to be equivalent of specifying SHA-1. This default value is now removed and we will let the underlying OpenSSL library decide instead. [GitHub #507] - Add
OpenSSL::BN#mod_sqrt. [GitHub #553] - Allow calling
OpenSSL::Cipher#updatewith an empty string. This was prohibited to workaround an ancient bug in OpenSSL. [GitHub #568] - Fix build on platforms without socket support, such as WASI.
OpenSSL::SSLwill not be defined if OpenSSL is compiled withOPENSSL_NO_SOCK. [GitHub #558] - Improve support for recent LibreSSL versions. This includes HKDF support in LibreSSL 3.6 and Ed25519 support in LibreSSL 3.7.
- Fix a performance regression introduced in v2.1.3 on a buffered write to
SSLSocket. [GitHub #706] - Fix
OpenSSL::PKCS7to handle PKCS#7 structures without content. [GitHub #690] [GitHub #752] - Fix
OpenSSL::ASN1::ObjectId#==with OIDs without a known name. [GitHub #791] [GitHub #792] - Fix
OpenSSL::X509::Certificate#crl_uristo handle CDP with multiple CRL URIs. [GitHub #775] [GitHub #776] - Fix
OpenSSL::Cipher#updateto always make the output bufferStringindependent. [Bug #20937] [GitHub #824]
Merged changes in 2.2.3. Additionally, the following issues are fixed by this release.
- Fix OpenSSL::PKey::EC#check_key not working correctly on OpenSSL 3.0. [GitHub #563] [GitHub #580]
Merged changes in 2.1.4 and 2.2.2. Additionally, the following issues are fixed by this release.
- Add missing type check in OpenSSL::PKey::PKey#sign's optional parameters. [GitHub #531]
- Work around OpenSSL 3.0's HMAC issues with a zero-length key. [GitHub #538]
- Fix a regression in OpenSSL::PKey::DSA.generate's default of 'q' size. [GitHub #483] [GitHub #539]
- Restore OpenSSL::PKey.read's ability to decode "openssl ecparam -genkey" output when linked against OpenSSL 3.0. [GitHub #535] [GitHub #540]
- Restore error checks in OpenSSL::PKey::EC#{to_der,to_pem}. [GitHub #541]
-
OpenSSL 1.0.1 and Ruby 2.3-2.5 are no longer supported. [GitHub #396] [GitHub #466]
-
OpenSSL 3.0 support is added. It is the first major version bump from OpenSSL 1.1 and contains incompatible changes that affect Ruby/OpenSSL. Note that OpenSSL 3.0 support is preliminary and not all features are currently available: [GitHub #369]
-
Deprecate the ability to modify
OpenSSL::PKey::PKeyinstances. OpenSSL 3.0 made EVP_PKEY structure immutable, and hence the following methods are not available when Ruby/OpenSSL is linked against OpenSSL 3.0. [GitHub #480]OpenSSL::PKey::RSA#set_key,#set_factors,#set_crt_paramsOpenSSL::PKey::DSA#set_pqg,#set_keyOpenSSL::PKey::DH#set_pqg,#set_key,#generate_key!OpenSSL::PKey::EC#private_key=,#public_key=,#group=,#generate_key!
-
Deprecate
OpenSSL::Engine. The ENGINE API has been deprecated in OpenSSL 3.0 in favor of the new "provider" concept and will be removed in a future version. [GitHub #481]
-
-
OpenSSL::SSL::SSLContext#tmp_ecdh_callbackhas been removed. It has been deprecated since v2.0.0 because it is incompatible with modern OpenSSL versions. [GitHub #394] -
OpenSSL::SSL::SSLSocket#readand#writenow raiseOpenSSL::SSL::SSLErrorif called before a TLS connection is established. Historically, they read/wrote unencrypted data to the underlying socket directly in that case. [GitHub #9] [GitHub #469]
-
Enhance OpenSSL::PKey's common interface. [GitHub #370]
- Key deserialization: Enhance
OpenSSL::PKey.readto handle PEM encoding of DH parameters, which used to be only deserialized byOpenSSL::PKey::DH.new. [GitHub #328] - Key generation: Add
OpenSSL::PKey.generate_parametersandOpenSSL::PKey.generate_key. [GitHub #329] - Public key signing: Enhance
OpenSSL::PKey::PKey#signand#verifyto use the new EVP_DigestSign() family to enable PureEdDSA support on OpenSSL 1.1.1 or later. They also now take optional algorithm-specific parameters for more control. [GitHub #329] - Low-level public key signing and verification: Add
OpenSSL::PKey::PKey#sign_raw,#verify_raw, and#verify_recover. [GitHub #382] - Public key encryption: Add
OpenSSL::PKey::PKey#encryptand#decrypt. [GitHub #382] - Key agreement: Add
OpenSSL::PKey::PKey#derive. [GitHub #329] - Key comparison: Add
OpenSSL::PKey::PKey#compare?to conveniently check that two keys have common parameters and a public key. [GitHub #383]
- Key deserialization: Enhance
-
Add
OpenSSL::BN#set_flagsand#get_flags. This can be used in combination withOpenSSL::BN::CONSTTIMEto force constant-time computation. [GitHub #417] -
Add
OpenSSL::BN#absto get the absolute value of the BIGNUM. [GitHub #430] -
Add
OpenSSL::SSL::SSLSocket#getbyte. [GitHub #438] -
Add
OpenSSL::SSL::SSLContext#tmp_dh=. [GitHub #459] -
Add
OpenSSL::X509::Certificate.loadto load a PEM-encoded and concatenated list of X.509 certificates at once. [GitHub #441] -
Change
OpenSSL::X509::Certificate.newto attempt to deserialize the given string first as DER encoding first and then as PEM encoding to ensure the round-trip consistency. [GitHub #442] -
Update various part of the code base to use the modern API. No breaking changes are intended with this. This includes:
OpenSSL::HMACuses the EVP API. [GitHub #371]OpenSSL::Configuses native OpenSSL API to parse config files. [GitHub #342]
- Fix serveral methods in OpenSSL::PKey::EC::Point attempting to raise an error with an incorrect class, which would end up with a TypeError. [GitHub #570]
- Fix OpenSSL::PKey::EC::Point#eql? and OpenSSL::PKey::EC::Group#eql? incorrectly treated OpenSSL's internal errors as "not equal". [GitHub #564]
- Fix build with LibreSSL 3.5 or later.
Merged changes in 2.1.4.
Merged changes in 2.1.3. Additionally, the following issues are fixed by this release.
- Fix crash in
OpenSSL::Timestamp::{Request,Response,TokenInfo}.newwhen invalid arguments are given. [GitHub #407] - Fix
OpenSSL::Timestamp::Factory#create_timestampwith LibreSSL on platforms wheretime_thas a different size fromlong. [GitHub #454]
- Remove unsupported MDC2, DSS, DSS1, and SHA algorithms.
- Remove
OpenSSL::PKCS7::SignerInfo#namealias for#issuer. [GitHub #266] - Deprecate
OpenSSL::Config#add_valueand#[]=for future removal. [GitHub #322]
- Change default
OpenSSL::SSL::SSLServer#listenbacklog argument from 5 toSocket::SOMAXCONN. [GitHub #286] - Make
OpenSSL::HMAC#==use a timing safe string comparison. [GitHub #284] - Add support for SHA3 and BLAKE digests. [GitHub #282]
- Add
OpenSSL::SSL::SSLSocket.openfor opening aTCPSocketand returning anOpenSSL::SSL::SSLSocketfor it. [GitHub #225] - Support marshalling of
OpenSSL::X509andOpenSSL::PKeyobjects. [GitHub #281] [GitHub #363] - Add
OpenSSL.secure_comparefor timing safe string comparison for strings of possibly unequal length. [GitHub #280] - Add
OpenSSL.fixed_length_secure_comparefor timing safe string comparison for strings of equal length. [GitHub #269] - Add
OpenSSL::SSL::SSLSocket#{finished_message,peer_finished_message}for last finished message sent and received. [GitHub #250] - Add
OpenSSL::Timestampmodule for handing timestamp requests and responses. [GitHub #204] - Add helper methods for
OpenSSL::X509::Certificate:find_extension,subject_key_identifier,authority_key_identifier,crl_uris,ca_issuer_urisandocsp_uris, and forOpenSSL::X509::CRL:find_extensionandsubject_key_identifier. [GitHub #260] [GitHub #275] [GitHub #293] - Add
OpenSSL::ECPoint#addfor performing elliptic curve point addition. [GitHub #261] - Make
OpenSSL::PKey::RSA#{export,to_der}checkkey,factors, andcrt_paramsto do proper private key serialization. [GitHub #258] - Add
OpenSSL::SSL::{SSLSocket,SSLServer}#fileno, returning the underlying socket file descriptor number. [GitHub #247] - Support client certificates with TLS 1.3, and support post-handshake authentication with OpenSSL 1.1.1+. [GitHub #239]
- Add
OpenSSL::ASN1::ObjectId#==for equality testing. - Add
OpenSSL::X509::Extension#value_derfor the raw value of the extension. [GitHub #234] - Significantly reduce allocated memory in
OpenSSL::Buffering#do_write. [GitHub #212] - Ensure all valid IPv6 addresses are considered valid as elements of subjectAlternativeName in certificates. [GitHub #185]
- Allow recipient's certificate to be omitted in PCKS7#decrypt. [GitHub #183]
- Add support for reading keys in PKCS #8 format and export via instance methods
added to
OpenSSL::PKeyclasses:private_to_der,private_to_pem,public_to_derandpublic_to_pem. [GitHub #297]
- Do not use pkg-config if --with-openssl-dir option is specified. [GitHub #486]
- Fix deprecation warnings on Ruby 3.0.
- Add ".include" directive support in
OpenSSL::Config. [GitHub #216] - Fix handling of IPv6 address SANs. [GitHub #185]
- Hostname verification failure with
OpenSSL::SSL::SSLContext#verify_hostname=sets a proper error code. [GitHub #350] - Fix crash with
OpenSSL::BN.new(nil, 2). [Bug #15760] OpenSSL::SSL::SSLSocket#sys{read,write}prevent internal string buffers from being modified by another thread. [GitHub #453]- Fix misuse of input record separator in
OpenSSL::Bufferingwhere it was for output. - Fix wrong integer casting in
OpenSSL::PKey::EC#dsa_verify_asn1. [GitHub #460] extconf.rbexplicitly checks that OpenSSL's version number is 1.0.1 or newer but also less than 3.0. Ruby/OpenSSL v2.1.x and v2.2.x will not support OpenSSL 3.0 API. [GitHub #458]- Activate
digestgem correctly.digestlibrary could go into an inconsistent state if there are multiple versions ofdigestis installed andopensslisrequired beforedigest. [GitHub #463] - Fix GC.compact compatibility. [GitHub #464] [GitHub #465]
Merged changes in 2.0.9.
Merged changes in 2.0.8.
- Support for OpenSSL versions before 1.0.1 and LibreSSL versions before 2.5 is removed. [GitHub #86]
- OpenSSL::BN#negative?, #+@, and #-@ are added.
- OpenSSL::SSL::SSLSocket#connect raises a more informative exception when certificate verification fails. [GitHub #99]
- OpenSSL::KDF module is newly added. In addition to PBKDF2-HMAC that has moved from OpenSSL::PKCS5, scrypt and HKDF are supported. [GitHub #109] [GitHub #173]
- OpenSSL.fips_mode is added. We had the setter, but not the getter. [GitHub #125]
- OpenSSL::OCSP::Request#signed? is added.
- OpenSSL::ASN1 handles the indefinite length form better. OpenSSL::ASN1.decode no longer wrongly treats the end-of-contents octets as part of the content. OpenSSL::ASN1::ASN1Data#infinite_length is renamed to #indefinite_length. [GitHub #98]
- OpenSSL::X509::Name#add_entry now accepts two additional keyword arguments 'loc' and 'set'. [GitHub #94]
- OpenSSL::SSL::SSLContext#min_version= and #max_version= are added to replace #ssl_version= that was built on top of the deprecated OpenSSL C API. Use of that method and the constant OpenSSL::SSL::SSLContext::METHODS is now deprecated. [GitHub #142]
- OpenSSL::X509::Name#to_utf8 is added. [GitHub #26] [GitHub #143]
- OpenSSL::X509::{Extension,Attribute,Certificate,CRL,Revoked,Request} can be compared with == operator. [GitHub #161]
- TLS Fallback Signaling Cipher Suite Value (SCSV) support is added. [GitHub #165]
- Build failure with OpenSSL 1.1 built with no-deprecated is fixed. [GitHub #160]
- OpenSSL::Buffering#write accepts an arbitrary number of arguments. [Feature #9323] [GitHub #162]
- OpenSSL::PKey::RSA#sign_pss and #verify_pss are added. They perform RSA-PSS signature and verification. [GitHub #75] [GitHub #76] [GitHub #169]
- OpenSSL::SSL::SSLContext#add_certificate is added. [GitHub #167]
- OpenSSL::PKey::EC::Point#to_octet_string is added. OpenSSL::PKey::EC::Point.new can now take String as the second argument. [GitHub #177]
- OpenSSL::X509::Name#<=> could incorrectly return 0 (= equal) for non-equal objects. CVE-2018-16395 is assigned for this issue. https://hackerone.com/reports/387250
- Fixed OpenSSL::PKey::*.{new,generate} immediately aborting if the thread is interrupted. [Bug #14882] [GitHub #205]
- Fixed OpenSSL::X509::Name#to_s failing with OpenSSL::X509::NameError if called against an empty instance. [GitHub #200] [GitHub #211]
- OpenSSL::Cipher#pkcs5_keyivgen raises an error when a negative iteration count is given. [GitHub #184]
- Fixed build with LibreSSL 2.7. [GitHub #192] [GitHub #193]
- OpenSSL::Cipher#auth_data= could segfault if called against a non-AEAD cipher. [Bug #14024]
- OpenSSL::X509::Certificate#public_key= (and similar methods) could segfault when an instance of OpenSSL::PKey::PKey with no public key components is passed. [Bug #14087] [GitHub #168]
- The session_remove_cb set to an OpenSSL::SSL::SSLContext is no longer called during GC.
- A possible deadlock in OpenSSL::SSL::SSLSocket#sysread is fixed. [GitHub #139]
- OpenSSL::BN#hash could return an unnormalized fixnum value on Windows. [Bug #13877]
- OpenSSL::SSL::SSLSocket#sysread and #sysread_nonblock set the length of the destination buffer String to 0 on error. [GitHub #153]
- Possible deadlock is fixed. This happened only when built with older versions of OpenSSL (before 1.1.0) or LibreSSL. [GitHub #155]
- Reading a PEM/DER-encoded private key or certificate from an IO object did not work properly on mswin platforms. [ruby/openssl#128]
- Broken length check in the PEM passphrase callback is fixed.
- It failed to compile when OpenSSL is configured without TLS 1.0 support.
- It now compiles with LibreSSL without renaming on Windows (mswin).
- A workaround for the error queue leak of X509_load_cert_crl_file() that causes random errors is added. [Bug #11033]
- OpenSSL::ASN1::Constructive#each which was broken by 2.0.0 is fixed. [ruby/openssl#96]
- Fixed build with static OpenSSL libraries on Windows. [Bug #13080]
- OpenSSL::X509::Name#eql? which was broken by 2.0.0 is fixed.
- Fix build with early 0.9.8 series which did not have SSL_CTX_clear_options(). [ruby-core:78693]
- A GC issue around OpenSSL::BN is fixed. [ruby/openssl#87]
- OpenSSL::ASN1 now parses BER encoding of GeneralizedTime without seconds. [ruby/openssl#88]
This is the first release of openssl gem, formerly a standard library of Ruby, ext/openssl. This is the successor of the version included in Ruby 2.3.
- Support for OpenSSL version 0.9.6 and 0.9.7 is completely removed. openssl gem still works with OpenSSL 0.9.8, but users are strongly encouraged to upgrade to at least 1.0.1, as OpenSSL < 1.0.1 will not receive any security fixes from the OpenSSL development team.
- OpenSSL 1.0.0, 1.0.1, 1.0.2, 1.1.0
- OpenSSL < 0.9.8 is no longer supported.
- LibreSSL 2.3, 2.4, 2.5
- Ruby 2.3, 2.4
-
Add support for OpenSSL 1.1.0. [Feature #12324]
-
Add support for LibreSSL
-
OpenSSL::Cipher
-
OpenSSL::Cipher#key= and #iv= reject too long inputs. They used to truncate silently. [Bug #12561]
-
OpenSSL::Cipher#iv_len= is added. It allows changing IV (nonce) length if using AEAD ciphers. [Bug #8667], [Bug #10420], [GH ruby/ruby#569], [GH ruby/openssl#58]
-
OpenSSL::Cipher#auth_tag_len= is added. This sets the authentication tag length to be generated by an AEAD cipher.
-
-
OpenSSL::OCSP
-
Accessor methods are added to OpenSSL::OCSP::CertificateId. [Feature #7181]
-
OpenSSL::OCSP::Request and BasicResponse can be signed with non-SHA-1 hash algorithm. [Feature #11552]
-
OpenSSL::OCSP::CertificateId and BasicResponse can be encoded into DER.
-
A new class OpenSSL::OCSP::SingleResponse is added for convenience.
-
OpenSSL::OCSP::BasicResponse#add_status accepts absolute times. They used to accept only relative seconds from the current time.
-
-
OpenSSL::PKey
-
OpenSSL::PKey::EC follows the general PKey interface. [Bug #6567]
-
OpenSSL::PKey.read raises OpenSSL::PKey::PKeyError instead of ArgumentError for consistency with OpenSSL::PKey::{DH,DSA,RSA,EC}#new. [Bug #11774], [GH ruby/openssl#55]
-
OpenSSL::PKey::EC::Group retrieved by OpenSSL::PKey::EC#group is no longer linked with the EC key. Modifications to the EC::Group have no effect on the key. [GH ruby/openssl#71]
-
OpenSSL::PKey::EC::Point#to_bn allows specifying the point conversion form by the optional argument.
-
-
OpenSSL::SSL
-
OpenSSL::SSL::SSLSocket#tmp_key is added. A client can call it after the connection is established to retrieve the ephemeral key. [GH ruby/ruby#1318]
-
The automatic ephemeral ECDH curve selection is enabled by default when built with OpenSSL >= 1.0.2 or LibreSSL.
-
OpenSSL::SSL::SSLContext#security_level= is added. You can set the "security level" of the SSL context. This is effective only when built with OpenSSL 1.1.0.
-
A new option 'verify_hostname' is added to OpenSSL::SSL::SSLContext. When it is enabled, and the SNI hostname is also set, the hostname verification on the server certificate is automatically performed. It is now enabled by OpenSSL::SSL::SSLContext#set_params. [GH ruby/openssl#60]
-
-
OpenSSL::Engine
- OpenSSL::Engine.cleanup does nothing when built with OpenSSL 1.1.0.
-
OpenSSL::SSL
-
OpenSSL::PKey::DH::DEFAULT_512 is removed. Hence servers no longer use 512-bit DH group by default. It is considered too weak nowadays. [Bug #11968], [GH ruby/ruby#1196]
-
RC4 cipher suites are removed from OpenSSL::SSL::SSLContext::DEFAULT_PARAMS. RC4 is now considered to be weak. [GH ruby/openssl#50]
-
-
OpenSSL::PKey
- OpenSSL::PKey::RSA#n=, #e=, #d=, #p=, #q=, #dmp1=, #dmq1=, #iqmp=, OpenSSL::PKey::DSA#p=, #q=, #g=, #priv_key=, #pub_key=, OpenSSL::PKey::DH#p=, #g=, #priv_key= and #pub_key= are deprecated. They are disabled when built with OpenSSL 1.1.0, due to its API change. Instead, OpenSSL::PKey::RSA#set_key, #set_factors, #set_crt_params, OpenSSL::PKey::DSA#set_pqg, #set_key, OpenSSL::PKey::DH#set_pqg and #set_key are added.
-
OpenSSL::Random
- OpenSSL::Random.pseudo_bytes is deprecated, and not defined when built with OpenSSL 1.1.0. Use OpenSSL::Random.random_bytes instead.
-
OpenSSL::SSL
- OpenSSL::SSL::SSLContext#tmp_ecdh_callback is deprecated, as the underlying API SSL_CTX_set_tmp_ecdh_callback() is removed in OpenSSL 1.1.0. It was first added in Ruby 2.3.0. To specify the curve to be used in ephemeral ECDH, use OpenSSL::SSL::SSLContext#ecdh_curves=. The automatic curve selection is also now enabled by default when built with a capable OpenSSL.