We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f462bd commit 5df8e30Copy full SHA for 5df8e30
lib/jopenssl/load.rb
@@ -43,6 +43,7 @@
43
44
module OpenSSL
45
autoload :Config, 'openssl/config' unless const_defined?(:Config, false)
46
+ autoload :ConfigError, 'openssl/config' unless const_defined?(:ConfigError, false)
47
autoload :PKCS12, 'openssl/pkcs12'
48
end
49
lib/openssl/config.rb
@@ -14,6 +14,7 @@
14
require 'stringio'
15
16
17
+ class ConfigError < OpenSSLError; end
18
##
19
# = OpenSSL::Config
20
#
@@ -27,6 +28,8 @@ module OpenSSL
27
28
class Config
29
include Enumerable
30
31
+ DEFAULT_CONFIG_FILE = nil # JRuby: compatibility (we do not read openssl.cnf)
32
+
33
class << self
34
35
0 commit comments