aboutsummaryrefslogtreecommitdiffstats
path: root/lib/openssl.rb
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2020-02-19 05:06:09 +0000
committerKazuki Yamaguchi <k@rhe.jp>2020-05-13 16:01:18 +0900
commitc891e0ea8951230c19919c6960d88b8d038395e9 (patch)
tree086b76a33cf9f20200477b1613f59fd8cba0705c /lib/openssl.rb
parentb70817faec1ca45cebe533a02617e7ac04d5ecbc (diff)
downloadruby-openssl-c891e0ea8951230c19919c6960d88b8d038395e9.tar.gz
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.
Diffstat (limited to 'lib/openssl.rb')
-rw-r--r--lib/openssl.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/openssl.rb b/lib/openssl.rb
index b0474857..8a342f15 100644
--- a/lib/openssl.rb
+++ b/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'