class OpenSSL::ASN1::Constructive
所有构造编码的父类。 Constructive
的 value 属性始终是一个数组。 属性与 ASN1Data
相同,并增加了标记。
SET 和 SEQUENCE¶ ↑
大多数构造编码都以 SET 或 SEQUENCE 的形式出现。 这些编码由 Constructive 的两个子类之一表示
-
OpenSSL::ASN1::Set
-
OpenSSL::ASN1::Sequence
请注意,带标签的序列和集合仍然被解析为 ASN1Data
的实例。 有关带标签的值的更多详细信息,请参见此处。
示例 - 构造一个 SEQUENCE¶ ↑
int = OpenSSL::ASN1::Integer.new(1) str = OpenSSL::ASN1::PrintableString.new('abc') sequence = OpenSSL::ASN1::Sequence.new( [ int, str ] )
示例 - 构造一个 SET¶ ↑
int = OpenSSL::ASN1::Integer.new(1) str = OpenSSL::ASN1::PrintableString.new('abc') set = OpenSSL::ASN1::Set.new( [ int, str ] )
公共实例方法
each { |asn1| block } → asn1_ary 点击以切换源代码
to_der → DER 编码字符串 点击以切换源代码
有关详细信息,请参见 ASN1Data#to_der
。
static VALUE ossl_asn1cons_to_der(VALUE self) { VALUE ary, str; long i; int indef_len; indef_len = RTEST(ossl_asn1_get_indefinite_length(self)); ary = rb_convert_type(ossl_asn1_get_value(self), T_ARRAY, "Array", "to_a"); str = rb_str_new(NULL, 0); for (i = 0; i < RARRAY_LEN(ary); i++) { VALUE item = RARRAY_AREF(ary, i); if (indef_len && rb_obj_is_kind_of(item, cASN1EndOfContent)) { if (i != RARRAY_LEN(ary) - 1) ossl_raise(eASN1Error, "illegal EOC octets in value"); /* * EOC is not really part of the content, but we required to add one * at the end in the past. */ break; } item = ossl_to_der_if_possible(item); StringValue(item); rb_str_append(str, item); } return to_der_internal(self, 1, indef_len, str); }