Sha256: 98c228fbc625713ae64b388adfd9f3d59b55e6ebb3dd46e8d8810169cebba827

Contents?: true

Size: 320 Bytes

Versions: 2

Compression:

Stored size: 320 Bytes

Contents

# frozen_string_literal: true

module RASN1
  module Types
    # ASN.1 Visible String
    # @author Sylvain Daubert
    class VisibleString < IA5String
      # VisibleString tag value
      TAG = 26

      # Get ASN.1 type
      # @return [String]
      def self.type
        'VisibleString'
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

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