るりまサーチ

最速Rubyリファレンスマニュアル検索!
77件ヒット [1-77件を表示] (0.101秒)
トップページ > クエリ:String[x] > クエリ:BMPString[x]

別のキーワード

  1. string []=
  2. string slice
  3. string slice!
  4. string []
  5. string gsub!

ライブラリ

クラス

モジュール

キーワード

検索結果

OpenSSL::ASN1.#BMPString(value) -> OpenSSL::ASN1::BMPString -> OpenSSL::ASN1::BMPString (24627.0)

ASN.1 の BMPString 型の値を表現する Ruby のオブジェクトを 生成します。

...ASN.1 の BMPString 型の値を表現する Ruby のオブジェクトを
生成します。

OpenSSL::ASN1::BMPString.new と同じです。

@param value ASN.1 値を表す Ruby のオブジェクト(文字列)
@param tag タグ番号
@param tagging タグ付けの方法(:IMPLICIT もしくは :E...

OpenSSL::ASN1.#BMPString(value, tag, tagging, tag_class) -> OpenSSL::ASN1::BMPString (24427.0)

ASN.1 の BMPString 型の値を表現する Ruby のオブジェクトを 生成します。

...ASN.1 の BMPString 型の値を表現する Ruby のオブジェクトを
生成します。

OpenSSL::ASN1::BMPString.new と同じです。

@param value ASN.1 値を表す Ruby のオブジェクト(文字列)
@param tag タグ番号
@param tagging タグ付けの方法(:IMPLICIT もしくは :E...

OpenSSL::ASN1::BMPString (24016.0)

ASN.1 の BMPString 型(Universal タグのタグ番号30)を表すクラスです。

...ASN.1 の BMPString 型(Universal タグのタグ番号30)を表すクラスです。...

OpenSSL::ASN1::BMPSTRING -> Integer (12217.0)

ASN.1 UNIVERSAL タグの、 BMPSTRING のタグ番号 30 を表す定数です。

...ASN.1 UNIVERSAL タグの、
BMPSTRING
のタグ番号 30 を表す定数です。...

OpenSSL::ASN1::BMPString.new(value) -> OpenSSL::ASN1::BMPString (6240.0)

ASN.1 の BMPString 型の値を表現する OpenSSL::ASN1::BMPString オブジェクトを 生成します。

...ASN.1 の BMPString 型の値を表現する OpenSSL::ASN1::BMPString オブジェクトを
生成します。

value 以外の引数を省略した場合はタグクラスは :UNIVERSAL、
タグ は OpenSSL::ASN1::BMPSTRING となります。

@param value ASN.1 値を表す Ruby のオブジェ...

絞り込み条件を変える

OpenSSL::ASN1::BMPString.new(value, tag, tagging, tag_class) -> OpenSSL::ASN1::BMPString (6240.0)

ASN.1 の BMPString 型の値を表現する OpenSSL::ASN1::BMPString オブジェクトを 生成します。

...ASN.1 の BMPString 型の値を表現する OpenSSL::ASN1::BMPString オブジェクトを
生成します。

value 以外の引数を省略した場合はタグクラスは :UNIVERSAL、
タグ は OpenSSL::ASN1::BMPSTRING となります。

@param value ASN.1 値を表す Ruby のオブジェ...

OpenSSL::ASN1 (42.0)

ASN.1(Abstract Syntax Notation One) のデータを取り扱うためのモジュールです。

...T or EXPLICIT なタグ付けを実現することもできます。

例:
require 'openssl'

# 単純型のデータ
x = OpenSSL::ASN1::UTF8String.new("foobar")
# 構造型のデータ
y = OpenSSL::ASN1::Sequence.new([OpenSSL::ASN1::Boolean.new(true),
Ope...
...同じ
u.to_der # => "C\x01\x00"
# エンコードした文字列をデコード
OpenSSL::ASN1.decode(x.to_der)
# => #<OpenSSL::ASN1::UTF8String:0x000000027cc700 @tag=12, @value="foobar", @tagging=nil, @tag_class=:UNIVERSAL>
OpenSSL::ASN1.decode(y.to_der)
# => #<OpenSSL::ASN1::Sequence:0...
...SN1::VideotexString
| +-> OpenSSL::ASN1::IA5String
| +-> OpenSSL::ASN1::GraphicString
| +-> OpenSSL::ASN1::ISO64String
| +-> OpenSSL::ASN1::GeneralString
| +-> OpenSSL::ASN1::UniversalString
| +-> OpenSSL::ASN1::BMPString
|...