72件ヒット
[1-72件を表示]
(0.024秒)
ライブラリ
- openssl (12)
-
rubygems
/ specification (60)
クラス
-
Gem
:: Specification (60) -
OpenSSL
:: ASN1 :: ObjectId (12)
キーワード
-
array
_ attributes (12) - attribute (12)
-
attribute
_ defaults (12) - register (12)
-
required
_ attributes (12)
検索結果
先頭5件
-
Gem
:: Specification . attributes(*args) -> () (21102.0) -
複数の属性を一度に作成するために使用します。
複数の属性を一度に作成するために使用します。
各属性のデフォルト値は nil になります。
@param args 属性名を一つ以上指定します。 -
Gem
:: Specification . array _ attributes -> Array (9118.0) -
@@array_attributes の複製を返します。
...@@array_attributes の複製を返します。
@see Object#dup... -
Gem
:: Specification . required _ attributes -> Array (9102.0) -
必須属性のリストを返します。
必須属性のリストを返します。 -
Gem
:: Specification . attribute(name) -> () (3007.0) -
デフォルト値を指定したアクセサを定義するために使用します。
...フォルト値を指定したアクセサを定義するために使用します。
以下の副作用があります。
* クラス変数 @@attributes, @@default_value を変更します。
* 通常の属性書き込みメソッドを定義します。
* デフォルト値を持つ属性読... -
Gem
:: Specification . attribute _ defaults -> Array (3007.0) -
@todo
...@todo
@@attributes の複製を返します。... -
OpenSSL
:: ASN1 :: ObjectId . register(oid , short _ name , long _ name) -> true (113.0) -
オブジェクト識別子に対応する名前(short name と long name)を OpenSSLの内部テーブルに登録します。
...long name)を
OpenSSLの内部テーブルに登録します。
登録した名前は OpenSSL::X509::Extension などで利用できるようになります。
例:
require "openssl"
OpenSSL::ASN1::ObjectId.register(
"2.5.29.9", "subjectDirAttrs", "X509v3 Subject Directory Attributes")......p OpenSSL::ASN1::ObjectId.new("2.5.29.9").long_name
# => "X509v3 Subject Directory Attributes"
@param oid 登録する識別子(ドット区切り数字表記の文字列)
@param short_name short nameとして登録する文字列
@param long_name long nameとして登録する文字列
@raise...