mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 11:15:54 +03:00
[GH-ISSUE #1856] SMIMEA RR support #796
Labels
No labels
blocked
breaking-change
bug
bug:critical
bug:tests
cleanup
compliance
compliance
compliance
crate:all
crate:client
crate:native-tls
crate:proto
crate:recursor
crate:resolver
crate:resolver
crate:rustls
crate:server
crate:util
dependencies
docs
duplicate
easy
easy
enhance
enhance
enhance
feature:dns-over-https
feature:dns-over-quic
feature:dns-over-tls
feature:dnsssec
feature:global_lb
feature:mdns
feature:tsig
features:edns
has workaround
ops
perf
platform:WASM
platform:android
platform:fuchsia
platform:linux
platform:macos
platform:windows
pull-request
question
test
tools
tools
trust
unclear
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/hickory-dns#796
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @HLFH on GitHub (Dec 8, 2022).
Original GitHub issue: https://github.com/hickory-dns/hickory-dns/issues/1856
Is your feature request related to a problem? Please describe.
SMIMEA RR is not supported.
Describe the solution you'd like
Adding support for SMIMEA RR.
Additional context
https://datatracker.ietf.org/doc/html/rfc8162
@djc commented on GitHub (Dec 9, 2022):
Since you've been submitting some issues and PRs, can you talk about what your use case for trust-dns is?
FWIW, I'd be happy to review a PR that adds support for SMIMEA.
@HLFH commented on GitHub (Dec 9, 2022):
I only try to be a power user.
I want to use Trust-DNS as an authoritative DNS server. If that works well, I will use as well the other binaries provided by Trust-DNS (dns cli, recurse, ...).
I was previously an user of PowerDNS for years running it as an authoritative DNS server on two servers (authority/replica), and as a recursive DNS resolver. I am slightly disappointed how PowerDNS handles DNS over TLS and that I have to use a separate package for that (
dnsdist).I like the support that Trust-DNS has for DNS over QUIC and as an user of
certbot, I have happily read the last paper that mentioned your project. I am starting to usedanectlthat works around TLSA, SSHFP, OPENPGPKEY and SMIMEA resource records.@bluejekyll commented on GitHub (Jan 2, 2023):
SMIMEAappears to be the same format asTLSA(andHTTPS) record types. We can add support for it really easily based on that. Once I land #1770 I can quickly add support for this type. It looks like there is some special formatting of the label for the email address that needs to happen based on the RFC, I'm assuming that will be handled by the person creating the record.