class OpenSSL::Config

def each


end
# ...
config.each do |section, key, value|

Receive the section and its pairs for the current configuration.

For a block.
#
def each
  @data.each do |section, hash|
    hash.each do |key, value|
      yield [section, key, value]
    end
  end
end