You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We don't need DoE records in Vera, so we're not implementing them. However, we'd welcome PRs to support them.
Note that this missing feature does not represent a security vulnerability because DNSSEC verification will still fail -- it'll just throw an error instead of returning a SecurityStatus value.
High-level design
These are the main changes we have to make as of November 2022:
Message: Add support for Authority answers.
ZoneSigner: Add two methods, to be used in the tests: generateNsec() and generateNsec3().
Zone.initChild(): Change return type from VerificationResult<Zone> to VerificationResult<Zone | null>, and use null as a successful result when the DS response for the child zone denies the existence of such a record.
UnverifiedChain.verify(): Change return type from VerificationResult<RRSet> to VerificationResult<RRSet | null>, and use null as a successful result when the apex zone denies the existence of such an RRset.
Update README to remove comments about not supporting DoE records.
The text was updated successfully, but these errors were encountered:
We don't need DoE records in Vera, so we're not implementing them. However, we'd welcome PRs to support them.
Note that this missing feature does not represent a security vulnerability because DNSSEC verification will still fail -- it'll just throw an error instead of returning a
SecurityStatus
value.High-level design
These are the main changes we have to make as of November 2022:
Message
: Add support for Authority answers.ZoneSigner
: Add two methods, to be used in the tests:generateNsec()
andgenerateNsec3()
.Zone.initChild()
: Change return type fromVerificationResult<Zone>
toVerificationResult<Zone | null>
, and usenull
as a successful result when the DS response for the child zone denies the existence of such a record.UnverifiedChain.verify()
: Change return type fromVerificationResult<RRSet>
toVerificationResult<RRSet | null>
, and usenull
as a successful result when the apex zone denies the existence of such an RRset.The text was updated successfully, but these errors were encountered: