1510件ヒット
[1501-1510件を表示]
(0.387秒)
ライブラリ
- ビルトイン (1131)
- bigdecimal (38)
-
bigdecimal
/ math (72) - cmath (78)
- fileutils (91)
- json (36)
- objspace (36)
- open-uri (4)
- openssl (12)
- readline (12)
モジュール
キーワード
- BigDecimal (14)
- Complex (14)
- E (12)
- Float (12)
- Integer (12)
- PI (12)
- Rational (12)
- String (12)
-
_ id2ref (12) - ` (12)
- abort (24)
- acos (12)
- asin (12)
- atan (24)
- atan2 (12)
- autoload (12)
- caller (36)
- cbrt (18)
- cbrt! (6)
- copy (12)
- cos (24)
- cos! (6)
-
count
_ nodes (12) -
count
_ objects (12) -
count
_ objects _ size (12) -
count
_ tdata _ objects (12) - cp (12)
-
cp
_ lr (7) - decode (12)
-
define
_ finalizer (24) - dump (36)
- empty? (9)
- erf (12)
- erfc (12)
- eval (24)
- exec (48)
- exp (30)
- exp! (6)
- fail (12)
- fork (24)
- frexp (12)
- gamma (12)
- generate (12)
- gets (12)
- groups (12)
- grpowned? (12)
- hypot (12)
- identical? (12)
- ldexp (12)
- lgamma (12)
- link (12)
- ln (12)
-
ln
_ s (12) - load (24)
- log (48)
- log! (12)
- log10 (12)
- log2 (12)
- loop (24)
- open (16)
- owned? (12)
- p (12)
- print (12)
- printf (24)
- putc (12)
- puts (12)
- readline (24)
- readlines (12)
- require (12)
-
require
_ relative (12) - restore (12)
-
set
_ trace _ func (12) - setuid? (12)
- sin (24)
- sin! (6)
- size? (12)
- socket? (12)
- spawn (48)
- sqrt (30)
- sqrt! (6)
- sub (24)
- symlink (12)
- syscall (12)
- system (48)
- tan (12)
- tan! (6)
- throw (12)
- trap (24)
- unparse (12)
- uptodate? (12)
- wait (12)
- wait2 (12)
- waitpid (12)
- waitpid2 (12)
- warn (4)
- zero? (12)
検索結果
-
OpenSSL
:: ASN1 . # decode(der) -> OpenSSL :: ASN1 :: ASN1Data (113.0) -
DER 表現の文字列を解析し、そこにエンコードされている ASN.1 の値を OpenSSL::ASN1::ASN1Data のサブクラスのインスタンスとして返します。
...1Data のサブクラスのインスタンスとして返します。
複数の ASN.1 の値が含まれている場合、先頭の値だけを返します。
ASN.1 オブジェクトが Constructive である場合は、
それを構成する要素も再帰的に解析します。
例:
ruby -......cert = OpenSSL::X509::Certificate.new(pem)
pp OpenSSL::ASN1.decode(cert.to_der)
' mycert.pem
#<OpenSSL::ASN1::Sequence:0x814e9fc
@tag=16,
@tag_class=:UNIVERSAL,
@tagging=nil,
@value=
[#<OpenSSL::ASN1::Sequence:0x814ead8
@tag=16,
@tag_class=:UNIVERSAL,
@taggi......1Data:0x814f690
@tag=0,
@tag_class=:CONTEXT_SPECIFIC,
@value=
[#<OpenSSL::ASN1::Integer:0x814f6a4
@tag=2,
@tag_class=:UNIVERSAL,
@tagging=nil,
@value=2>]>,
...
@param der DER形式の文字列
@raise Op...