method

get_value

v1_9_3_392 - Show latest stable - Class: OpenSSL::Config
get_value(section, key)
public

No documentation available.

# File ext/openssl/lib/openssl/config.rb, line 223
    def get_value(section, key)
      if section.nil?
        raise TypeError.new('nil not allowed')
      end
      section = 'default' if section.empty?
      get_key_string(section, key)
    end