Sha256: 45b6bd0c8ad67e0fc92945bd952acebbedc763f579580226fe001976ee76db23

Contents?: true

Size: 1.93 KB

Versions: 3

Compression:

Stored size: 1.93 KB

Contents

module Net
  module NTLM
    class Client

      DEFAULT_FLAGS = NTLM::FLAGS[:UNICODE] | NTLM::FLAGS[:OEM] |
        NTLM::FLAGS[:SIGN]   | NTLM::FLAGS[:SEAL]         | NTLM::FLAGS[:REQUEST_TARGET] |
        NTLM::FLAGS[:NTLM]   | NTLM::FLAGS[:ALWAYS_SIGN]  | NTLM::FLAGS[:NTLM2_KEY] |
        NTLM::FLAGS[:KEY128] | NTLM::FLAGS[:KEY_EXCHANGE] | NTLM::FLAGS[:KEY56]

      attr_reader :username, :password, :domain, :workstation, :flags

      # @note All string parameters should be encoded in UTF-8. The proper
      #   final encoding for placing in the various {Message messages} will be
      #   chosen based on negotiation with the server.
      #
      # @param username [String]
      # @param password [String]
      # @option opts [String] :domain where we're authenticating to
      # @option opts [String] :workstation local workstation name
      # @option opts [Fixnum] :flags (DEFAULT_FLAGS) see Net::NTLM::Message::Type1.flag
      def initialize(username, password, opts = {})
        @username     = username
        @password     = password
        @domain       = opts[:domain] || nil
        @workstation  = opts[:workstation] || nil
        @flags        = opts[:flags] || DEFAULT_FLAGS
      end

      # @return [NTLM::Message]
      def init_context(resp = nil)
        if resp.nil?
          @session = nil
          type1_message
        else
          @session = Client::Session.new(self, Net::NTLM::Message.decode64(resp))
          @session.authenticate!
        end
      end

      # @return [Client::Session]
      def session
        @session
      end

      def session_key
        @session.exported_session_key
      end

      private

      # @return [Message::Type1]
      def type1_message
        type1 = Message::Type1.new
        type1[:flag].value = flags
        type1.domain = domain if domain
        type1.workstation = workstation if workstation

        type1
      end

    end
  end
end

require "net/ntlm/client/session"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubyntlm-0.5.3 lib/net/ntlm/client.rb
rubyntlm-0.5.2 lib/net/ntlm/client.rb
rubyntlm-0.5.1 lib/net/ntlm/client.rb