るりまサーチ

最速Rubyリファレンスマニュアル検索!
72件ヒット [1-72件を表示] (0.019秒)

別のキーワード

  1. net/imap content_id
  2. openssl id
  3. json create_id
  4. json create_id=
  5. drb install_id_conv

ライブラリ

キーワード

検索結果

OpenSSL::Engine#id -> String (18102.0)

engine の識別子を文字列で返します。

...engine の識別子を文字列で返します。

@see OpenSSL::Engine#name...

OpenSSL::Engine.by_id(id) -> OpenSSL::Engine (6225.0)

id で指定した engine をロードします。

...id で指定した engine をロードします。

OpenSSL::Engine
#load ではコンパイル時に決められた engine しか
読み込めませんが、これは動的なロードが可能です。

@param id engine の名前(文字列)
@raise OpenSSL::Engine::EngineError ロードが失敗し...

OpenSSL::Engine#load_private_key(id=nil, data=nil) -> OpenSSL::PKey::PKey (114.0)

秘密鍵を engine にロードします。

...秘密鍵を engine にロードします。

@param id key id(文字列)
@param data 文字列...

OpenSSL::Engine#load_public_key(id=nil, data=nil) -> OpenSSL::PKey::PKey (114.0)

公開鍵を engine にロードします。

...公開鍵を engine にロードします。

@param id key id(文字列)
@param data 文字列...

OpenSSL::Engine#name -> String (7.0)

engine の(人間に読みやすい)名称を文字列で返します。

...engine の(人間に読みやすい)名称を文字列で返します。

例:
engine.name # => "Atalla hardware engine support"

@see OpenSSL::Engine#id...

絞り込み条件を変える

OpenSSL::Engine.load(name = nil) -> true | nil (7.0)

Engine をロードします。

...はロード可能なすべての engine をロードします。

動的な読み込みをしたい場合は OpenSSL::Engine#by_id
用います。

ロードに成功した場合は true を返します。

@param name ロードする engine の名前(文字列)
@see OpenSSL::Engine.cleanup...