Module: Net::BER::Extensions::String

Included in:
String
Defined in:
lib/net/ber/core_ext/string.rb

Instance Method Summary collapse

Instance Method Details

#read_ber(syntax = nil) ⇒ Object

Nondestructively reads a BER object from this string.



31
32
33
# File 'lib/net/ber/core_ext/string.rb', line 31

def read_ber(syntax = nil)
  StringIO.new(self).read_ber(syntax)
end

#read_ber!(syntax = nil) ⇒ Object

Destructively reads a BER object from the string.



37
38
39
40
41
42
43
44
# File 'lib/net/ber/core_ext/string.rb', line 37

def read_ber!(syntax = nil)
  io = StringIO.new(self)

  result = io.read_ber(syntax)
  self.slice!(0...io.pos)
  
  return result
end

#to_ber(code = 0x04) ⇒ Object

Converts a string to a BER string. Universal octet-strings are tagged with 0x04, but other values are possible depending on the context, so we let the caller give us one.

User code should call either #to_ber_application_string or #to_ber_contextspecific.



11
12
13
# File 'lib/net/ber/core_ext/string.rb', line 11

def to_ber(code = 0x04)
  [code].pack('C') + length.to_ber_length_encoding + self
end

#to_ber_application_string(code) ⇒ Object

Creates an application-specific BER string encoded value with the provided syntax code value.



18
19
20
# File 'lib/net/ber/core_ext/string.rb', line 18

def to_ber_application_string(code)
  to_ber(0x40 + code)
end

#to_ber_contextspecific(code) ⇒ Object

Creates a context-specific BER string encoded value with the provided syntax code value.



25
26
27
# File 'lib/net/ber/core_ext/string.rb', line 25

def to_ber_contextspecific(code)
  to_ber(0x80 + code)
end