るりまサーチ

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

別のキーワード

  1. openssl oid
  2. openssl oid=
  3. objectid oid
  4. extension oid=
  5. attribute oid=

検索結果

<< < 1 2 >>

OpenSSL::X509::Extension.new(der) -> OpenSSL::X509::Extension (6.0)

OpenSSL::X509::Extension オブジェクトを生成します。

...DER 形式の文字列、もしくは
OpenSSL::ASN1::ASN1Data のサブクラスを与えます。

例;

require 'openssl'
include OpenSSL
oid =
"subjectKeyIdentifier"
val = "\004\024\206\312\245\"\201b\357\255\n\211\274\255rA,)I\364\206V"
ex = X509::Extension.new(oid, val)
p ex.value...

OpenSSL::X509::Extension.new(oid, value, critical=false) -> OpenSSL::X509::Extension (6.0)

OpenSSL::X509::Extension オブジェクトを生成します。

...DER 形式の文字列、もしくは
OpenSSL::ASN1::ASN1Data のサブクラスを与えます。

例;

require 'openssl'
include OpenSSL
oid =
"subjectKeyIdentifier"
val = "\004\024\206\312\245\"\201b\357\255\n\211\274\255rA,)I\364\206V"
ex = X509::Extension.new(oid, val)
p ex.value...
<< < 1 2 >>