Sha256: d3d9696ddcb238b8e59da7fa9fee4c9f22e693fd8d0ef2cca34e27f81db0bc61

Contents?: true

Size: 682 Bytes

Versions: 48

Compression:

Stored size: 682 Bytes

Contents

module Net
module NTLM

  # base classes for primitives
  # @private
  class Field
    attr_accessor :active, :value

    def initialize(opts)
      @value  = opts[:value]
      @active = opts[:active].nil? ? true : opts[:active]
      @size   = opts[:size].nil? ? 0 : opts[:size]
    end

    def size
      @active ? @size : 0
    end

    # Serializer function for field data
    # Exists in this class to be overridden by child classes
    def serialize
      raise NotImplementedError
    end

    # Parser function for field data
    # Exists in this class to be overridden by child classes
    def parse(str, offset=0)
      raise NotImplementedError
    end

  end


end
end

Version data entries

48 entries across 40 versions & 4 rubygems

Version Path
rubyntlm-0.6.5 lib/net/ntlm/field.rb
rubyntlm-0.6.4 lib/net/ntlm/field.rb
vagrant-unbundled-2.2.19.0 vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/field.rb
vagrant-unbundled-2.2.18.0 vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/field.rb
vagrant-unbundled-2.2.16.0 vendor/bundle/ruby/3.0.0/gems/rubyntlm-0.6.3/lib/net/ntlm/field.rb
vagrant-unbundled-2.2.16.0 vendor/bundle/ruby/2.7.0/gems/rubyntlm-0.6.2/lib/net/ntlm/field.rb
rubyntlm-0.6.3 lib/net/ntlm/field.rb
vagrant-unbundled-2.2.14.0 vendor/bundle/ruby/2.7.0/gems/rubyntlm-0.6.2/lib/net/ntlm/field.rb
vagrant-unbundled-2.2.10.0 vendor/bundle/ruby/2.7.0/gems/rubyntlm-0.6.2/lib/net/ntlm/field.rb
vagrant-unbundled-2.2.9.0 vendor/bundle/ruby/2.7.0/gems/rubyntlm-0.6.2/lib/net/ntlm/field.rb
vagrant-unbundled-2.2.8.0 vendor/bundle/ruby/2.7.0/gems/rubyntlm-0.6.2/lib/net/ntlm/field.rb
vagrant-unbundled-2.2.7.0 vendor/bundle/ruby/2.4.0/gems/rubyntlm-0.6.2/lib/net/ntlm/field.rb
vagrant-unbundled-2.2.7.0 vendor/bundle/ruby/2.7.0/gems/rubyntlm-0.6.2/lib/net/ntlm/field.rb
vagrant-unbundled-2.2.7.0 vendor/bundle/ruby/2.6.0/gems/rubyntlm-0.6.2/lib/net/ntlm/field.rb
vagrant-unbundled-2.2.6.2 vendor/bundle/ruby/2.6.0/gems/rubyntlm-0.6.2/lib/net/ntlm/field.rb
vagrant-unbundled-2.2.6.1 vendor/bundle/ruby/2.6.0/gems/rubyntlm-0.6.2/lib/net/ntlm/field.rb
vagrant-unbundled-2.2.6.0 vendor/bundle/ruby/2.6.0/gems/rubyntlm-0.6.2/lib/net/ntlm/field.rb
vagrant-unbundled-2.2.5.0 vendor/bundle/ruby/2.5.0/gems/rubyntlm-0.6.2/lib/net/ntlm/field.rb
vagrant-unbundled-2.2.5.0 vendor/bundle/ruby/2.6.0/gems/rubyntlm-0.6.2/lib/net/ntlm/field.rb
vagrant-unbundled-2.2.4.0 vendor/bundle/ruby/2.5.0/gems/rubyntlm-0.6.2/lib/net/ntlm/field.rb