Sha256: 3d3a2b707cc7d7cb503d508cc3cc0450fff86d45a366905b90c2bcd77756fde9

Contents?: true

Size: 273 Bytes

Versions: 5

Compression:

Stored size: 273 Bytes

Contents

module RASN1
  module Types

    # ASN.1 SET OF
    # @author Sylvain Daubert
    class SetOf < SequenceOf
      TAG = Set::TAG

      # A SET OF is encoded as a SET.
      # @return ['SET']
      def self.encoded_type
        Set.encoded_type
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rasn1-0.6.8 lib/rasn1/types/set_of.rb
rasn1-0.6.7 lib/rasn1/types/set_of.rb
rasn1-0.6.6 lib/rasn1/types/set_of.rb
rasn1-0.6.5 lib/rasn1/types/set_of.rb
rasn1-0.6.4 lib/rasn1/types/set_of.rb