diff options
author | Kazuki Yamaguchi <[email protected]> | 2020-02-19 05:06:09 +0000 |
---|---|---|
committer | Kazuki Yamaguchi <[email protected]> | 2021-03-16 19:16:10 +0900 |
commit | 22aeb6373e13929e80da1676b1dc79cbfffc38a4 (patch) | |
tree | 5e8d670bacb07bda665145a5987cbeaf2cbed304 /ext/openssl/lib/openssl.rb | |
parent | 7c13d2b3cc503790d044a6f5a34a61c50bc643c3 (diff) |
[ruby/openssl] config: revert to C implementation of OpenSSL::Config
Revert OpenSSL::Config to using the OpenSSL API and remove our own
parser implementation for the config file syntax.
OpenSSL::Config now wraps a CONF object. Accessor methods deal with the
object directly rather than Ruby-level internal state.
This work is based on the old C code we used before 2010.
https://github.com/ruby/openssl/commit/c891e0ea89
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/4275
Diffstat (limited to 'ext/openssl/lib/openssl.rb')
-rw-r--r-- | ext/openssl/lib/openssl.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/openssl/lib/openssl.rb b/ext/openssl/lib/openssl.rb index b047485785..8a342f15b6 100644 --- a/ext/openssl/lib/openssl.rb +++ b/ext/openssl/lib/openssl.rb @@ -15,7 +15,6 @@ require 'openssl.so' require_relative 'openssl/bn' require_relative 'openssl/pkey' require_relative 'openssl/cipher' -require_relative 'openssl/config' require_relative 'openssl/digest' require_relative 'openssl/hmac' require_relative 'openssl/x509' |