(self)
| 97 | self._test_dnssec_alg(PrivateECDSAP384SHA384) |
| 98 | |
| 99 | def test_eddsa(self): |
| 100 | self._test_dnssec_alg(PrivateED25519) |
| 101 | self._test_dnssec_alg(PrivateED448) |
| 102 | |
| 103 | def test_algorithm_mismatch(self): |
| 104 | private_key_ed448 = PrivateED448.generate() |
nothing calls this directly
no test coverage detected