Class: Net::NTLM::String

Inherits:
Field
  • Object
show all
Defined in:
lib/net/ntlm.rb

Instance Attribute Summary

Attributes inherited from Field

#active, #value

Instance Method Summary collapse

Methods inherited from Field

#size

Constructor Details

#initialize(opts) ⇒ String

Returns a new instance of String.



320
321
322
323
# File 'lib/net/ntlm.rb', line 320

def initialize(opts)
  super(opts)
  @size = opts[:size]
end

Instance Method Details

#parse(str, offset = 0) ⇒ Object



325
326
327
328
329
330
331
332
# File 'lib/net/ntlm.rb', line 325

def parse(str, offset=0)
  if @active and str.size >= offset + @size
    @value = str[offset, @size]
    @size
  else
    0
  end
end

#serializeObject



334
335
336
337
338
339
340
# File 'lib/net/ntlm.rb', line 334

def serialize
  if @active
    @value
  else
    ""
  end
end

#value=(val) ⇒ Object



342
343
344
345
346
# File 'lib/net/ntlm.rb', line 342

def value=(val)
  @value = val
  @size = @value.nil? ? 0 : @value.size
  @active = (@size > 0)
end