# File lib/openid/filestore.rb, line 36
    def read_auth_key
      f = nil
      begin
        f = File.open(@auth_key_name)      
      rescue Errno::ENOENT
        return nil
      else
        return f.read
      ensure
        f.close unless f.nil?      
      end
    end