るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.103秒)
トップページ > クエリ:t[x] > 種類:インスタンスメソッド[x] > クエリ:require[x] > クラス:OpenSSL::Config[x]

別のキーワード

  1. openssl t61string
  2. asn1 t61string
  3. matrix t
  4. t61string new
  5. fiddle type_size_t

ライブラリ

検索結果

OpenSSL::Config#each {|section, key, value| ... } -> self (108.0)

オブジェクトに含まれる全ての設定情報を順にブロックに渡し 呼び出します。

...す。

require
'openssl'
conf = OpenSSL::Config.load(OpenSSL::Config::DEFAULT_CONFIG_FILE)
conf.each{|section, key, value| p [section, key, value]}
# => ["req_distinguished_name", "countryName", "Country Name (2 letter code)"]
# => ["req_distinguished_name", "countryName_default", "AU"]...
...# => ["req_distinguished_name", "countryName_min", "2"]
# => :...