Sha256: e65493bc7ea6bc4f8ad53b5b1d24d52c64cdff1d0bb46e20dfb032e0079f75c6

Contents?: true

Size: 326 Bytes

Versions: 2

Compression:

Stored size: 326 Bytes

Contents

# frozen_string_literal: true

module RASN1
  module Types
    # ASN.1 SET OF
    # @author Sylvain Daubert
    class SetOf < SequenceOf
      # SetOf tag value
      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

2 entries across 2 versions & 1 rubygems

Version Path
rasn1-0.7.1 lib/rasn1/types/set_of.rb
rasn1-0.7.0 lib/rasn1/types/set_of.rb