OpenSSL::ASN1::ASN1Data.new(value, tag, tag_class) => ASN1Data
Class Public methods
value
: Please have a look at Constructive and Primitive to see how Ruby types are mapped to
ASN.1 types and vice versa.
tag
: A Number
indicating the tag number.
tag_class
: A Symbol
indicating the tag class.
Please cf. ASN1 for possible values.
Example
1 2 | asn1_int = OpenSSL::ASN1Data. new ( 42 , 2 , : UNIVERSAL ) # => Same as OpenSSL::ASN1::Integer.new(42) tagged_int = OpenSSL::ASN1Data. new ( 42 , 0 , : CONTEXT_SPECIFIC ) # implicitly 0-tagged INTEGER |
Please login to continue.