Again, I'm not an expert, but I believe this test is incorrect: ``` if (record.type == Record.TYPE.TLSA && record.name.equals(req)) ``` https://github.com/MiniDNS/minidns/blob/master/minidns-dnssec/src/main/java/org/minidns/dane/DaneVerifier.java#L123 And should be: ``` if (record.type == Record.TYPE.TLSA) ```