るりまサーチ

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

別のキーワード

  1. openssl p
  2. openssl p=
  3. fileutils mkdir_p
  4. kernel $-p
  5. kernel p

ライブラリ

クラス

モジュール

検索結果

OpenSSL::PKCS7#type -> Symbol (38302.0)

PKCS7 オブジェクトのタイプを Symbol オブジェクトで返します。

...PKCS7 オブジェクトのタイプを Symbol オブジェクトで返します。

次のうちのいずれかの値をとります。
* :signed
* :encrypted
* :enveloped
* :signedAndEnveloped
* :data...

OpenURI::Meta#meta -> Hash (3143.0)

ヘッダを収録したハッシュを返します。

...st[例][ruby]{
require 'open-uri'
open('http://example.com/') {|f|
p
f.meta
#=> {"date"=>"Sun, 04 May 2008 11:26:40 GMT",
# "content-type"=>"text/html;charset=utf-8",
# "server"=>"Apache/2.0.54 (Debian GNU/Linux) mod_ssl/2.0.54 OpenSSL/0.9.7e",
# "transfer-encoding"=>"chunked"}
}...
...[例][ruby]{
require 'open-uri'
URI.open('http://example.com/') {|f|
p
f.meta
#=> {"date"=>"Sun, 04 May 2008 11:26:40 GMT",
# "content-type"=>"text/html;charset=utf-8",
# "server"=>"Apache/2.0.54 (Debian GNU/Linux) mod_ssl/2.0.54 OpenSSL/0.9.7e",
# "transfer-encoding"=>"chunked"}...