class OpenSSL::ASN1::Constructive
所有构造编码的父类。 Constructive 的value属性始终是一个Array。属性与 ASN1Data 的属性相同,但增加了标记。
SET 和 SEQUENCE¶ ↑
大多数构造编码都以 SET 或 SEQUENCE 的形式出现。这些编码由 Constructive 的两个子类之一表示
-
OpenSSL::ASN1::Sequence
请注意,带标记的序列和集合仍然会被解析为 ASN1Data 的实例。有关带标记值的更多详细信息,请参阅 Find。
示例 - 构建 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 ] )
公共实例方法
源码
源码
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);
}
有关详细信息,请参阅 ASN1Data#to_der。