# File lib/httpauth/digest.rb, line 298
      def self.load(filename, options={})
        h = nil
        File.open(filename, 'r') do |f|
          h = Marshal.load f
        end
        new h, options
      end