Sha256: d5ee9eaf16b96ff78e6cce9239efaced421bd61fbaff95d45e6b37f2b2f62d77

Contents?: true

Size: 703 Bytes

Versions: 4

Compression:

Stored size: 703 Bytes

Contents

# frozen_string_literal: true

module RASN1
  module Types
    # ASN.1 Printable String
    # @author Sylvain Daubert
    class PrintableString < OctetString
      # PrintableString id value
      ID = 19

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

      private

      def value_to_der
        check_characters
        @value.to_s.b
      end

      def der_to_value(der, ber: false)
        super
        check_characters
      end

      def check_characters
        m = @value.to_s.match(%r{([^a-zA-Z0-9 '=()+,\-./:?])})
        raise ASN1Error, "PRINTABLE STRING #{@name}: invalid character: '#{m[1]}'" if m
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rasn1-0.13.1 lib/rasn1/types/printable_string.rb
rasn1-0.13.0 lib/rasn1/types/printable_string.rb
rasn1-0.12.1 lib/rasn1/types/printable_string.rb
rasn1-0.12.0 lib/rasn1/types/printable_string.rb