dnsimple / dns_erlang

Erlang DNS library.
Apache License 2.0
95 stars 25 forks source link

Add CDS/CDNSKEY record types #17

Closed coreyhaines closed 5 years ago

coreyhaines commented 5 years ago

This adds record types for CDS and CDNSKEY as defined in RFC7344.

This was a straightforward enhancement, copying the code for DS/DNSKEY records, as according to the RFC they are the same:

The wire and presentation format of the Child DS (CDS) resource record is identical to the DS record [RFC4034]. IANA has allocated RR code 59 for the CDS resource record via Expert Review.

and

The wire and presentation format of the CDNSKEY ("Child DNSKEY") resource record is identical to the DNSKEY record. IANA has allocated RR code 60 for the CDNSKEY resource record via Expert Review.

Changes