-
Can anyone please give an example of how to use dnssec.validate_rrsig(). Looked at the documentation but could not find much for reference. |
Beta Was this translation helpful? Give feedback.
Answered by
rthalley
Sep 21, 2021
Replies: 1 comment
-
Check out the dnspython DNSSEC tests. From the error, it sounds like you gave an rrset to validate_rrsig instead of an rdata. You might find calling validate() works better for your use case than validate_rrsig(). |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
rthalley
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Check out the dnspython DNSSEC tests.
From the error, it sounds like you gave an rrset to validate_rrsig instead of an rdata. You might find calling validate() works better for your use case than validate_rrsig().