mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 11:15:54 +03:00
[PR #1498] [MERGED] Move tsig to dnssec and rename Signer to SigSigner #2367
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#2367
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?
📋 Pull Request Information
Original PR: https://github.com/hickory-dns/hickory-dns/pull/1498
Author: @bluejekyll
Created: 5/27/2021
Status: ✅ Merged
Merged: 5/30/2021
Merged by: @bluejekyll
Base:
main← Head:move-tsig-to-dnssec📝 Commits (5)
8082425move TSIG into DNSSEC to allow for slimmer dependencies5a1d983rename Signer to SigSigner to differentiate from TSigner786b425Fixup documentation for Signer9b20b4fremove all deprecated usages of Signer for SigSignere59dec8fix dnssec warnings📊 Changes
31 files changed (+306 additions, -257 deletions)
View changed files
📝
CHANGELOG.md(+1 -1)📝
crates/async-std-resolver/src/lib.rs(+1 -1)📝
crates/client/Cargo.toml(+3 -1)📝
crates/client/src/client/client.rs(+10 -7)📝
crates/client/src/client/client_connection.rs(+24 -5)📝
crates/client/src/lib.rs(+2 -2)📝
crates/client/src/rr/dnssec/mod.rs(+5 -1)📝
crates/client/src/rr/dnssec/signer.rs(+37 -45)📝
crates/client/src/rr/dnssec/tsig.rs(+6 -5)📝
crates/client/src/rr/mod.rs(+0 -1)📝
crates/proto/Cargo.toml(+3 -3)📝
crates/proto/src/op/message.rs(+7 -3)📝
crates/proto/src/rr/dnssec/rdata/mod.rs(+142 -0)📝
crates/proto/src/rr/dnssec/rdata/tsig.rs(+9 -4)📝
crates/proto/src/rr/rdata/mod.rs(+0 -2)📝
crates/proto/src/rr/record_data.rs(+1 -123)📝
crates/proto/src/rr/record_type.rs(+5 -11)📝
crates/resolver/src/name_server/name_server.rs(+1 -0)📝
crates/resolver/src/name_server/name_server_pool.rs(+1 -0)📝
crates/server/src/authority/authority.rs(+2 -2)...and 11 more files
📄 Description
Some cleanup after the TSIG support was added.
@trinity-1686a I missed this in the previous review. To keep the resolver dependencies at a minimum, we've been trying to keep signing logic, etc, isolated to the
dnssecfeature. I moved tsig in the first commit. In the second commit, I renamedSignertoSigSigner, to have a better name separate from theTSigner.SigSigneris used for more thanSIG0, it's also used forRRSIGin DNSSEC.🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.