# File lib/openid/filestore.rb, line 35
    def readAuthKey
      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