Sha256: 85a00cf9520b8150c45fa81647ff58fff29dcbc98f9158f5b3bb817a1d0d6e36

Contents?: true

Size: 400 Bytes

Versions: 48

Compression:

Stored size: 400 Bytes

Contents

module Net
  module NTLM

    class Int16LE < Field

      def initialize(opt)
        super(opt)
        @size = 2
      end

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

      def serialize
        [@value].pack("v")
      end
    end

  end
end

Version data entries

48 entries across 40 versions & 4 rubygems

Version Path
rubyntlm-0.5.3 lib/net/ntlm/int16_le.rb
vagrant-unbundled-1.8.1.1 vendor/bundle/ruby/2.3.0/gems/rubyntlm-0.4.0/lib/net/ntlm/int16_le.rb
vagrant-cloudstack-1.2.0 vendor/bundle/gems/rubyntlm-0.4.0/lib/net/ntlm/int16_le.rb
rubyntlm-0.5.2 lib/net/ntlm/int16_le.rb
rubyntlm-0.5.1 lib/net/ntlm/int16_le.rb
vagrant-cloudstack-1.1.0 vendor/bundle/gems/rubyntlm-0.4.0/lib/net/ntlm/int16_le.rb
rubyntlm-0.5.0 lib/net/ntlm/int16_le.rb
rubyntlm-0.4.0 lib/net/ntlm/int16_le.rb