Sha256: 697593af23a9951697ca19bec78d526ffb73c13aa4225efb5552e645ff3e87e2
Contents?: true
Size: 919 Bytes
Versions: 2
Compression:
Stored size: 919 Bytes
Contents
module RASN1 module Types # @abstract This class SHOULD be used as base class for all ASN.1 primitive # types. # Base class for all ASN.1 constructed types # @author Sylvain Daubert class Constructed < Base # Constructed value ASN1_PC = 0x20 def inspect(level=0) case @value when Array str = '' str << ' ' * level if level > 0 str << "#{@name} " unless @name.nil? level = level.abs str << "#{type}:\n" level += 1 @value.each do |item| case item when Base, Model next if item.optional? and item.value.nil? str << ' ' * level str << "#{item.inspect(level)}\n" else str << item.inspect end end str else super end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rasn1-0.6.2 | lib/rasn1/types/constructed.rb |
rasn1-0.6.1 | lib/rasn1/types/constructed.rb |