# File ../../auditor/lib/kasp_auditor/partial_auditor.rb, line 916
    def do_basic_dnskey_checks(line)
      begin
        key_rr = RR.create(line)
      rescue DecodeError => e
        log(LOG_ERR, "Signed file contains invalid RR : #{line.chomp}, #{e}")
        return
      end
      @keys.push(key_rr)
      @keys_original.push(key_rr.clone)

      #      Auditor.check_key_config(@keys, @unsigned_keys, @key_cache, @config, self)
    end