класс OpenSSL::ASN1::Constructive
Базовый класс для всех составных кодировок. Атрибут value класса Constructive всегда является массивом 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 ] )
Открытые методы экземпляров
Исходный код
# File ext/openssl/lib/openssl/asn1.rb, line 148 def each(&blk) @value.each(&blk) self end
Вызывает указанный блок один раз для каждого элемента в self, передавая этот элемент в качестве параметра asn1. Если блок не задан, вместо этого возвращается перечислитель.
Пример
asn1_ary.each do |asn1| puts asn1 end
Исходный код
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 для получения подробной информации.
Ruby Core © 1993–2024 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.