# File lib/httpauth/digest.rb, line 601
      def load
        begin
          File.open(filename, 'r') do |f|
            Marshal.load f.read
          end
        rescue Errno::ENOENT
          {}
        end
      end