mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 11:15:54 +03:00
[PR #2344] [CLOSED] NSEC3 support #2972
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#2972
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/2344
Author: @pvdrz
Created: 8/6/2024
Status: ❌ Closed
Base:
main← Head:nsec3-signing-poc📝 Commits (10+)
326be34Implement basic zone signing for NSEC3 records6c6d185Add configuration fields for NSEC304038e6Implement basic NSEC3 zone serving0f2340aImplement NSEC3 zone serving for NODATA responses6832b3cDocument zone serving64c83e7Only serve NSEC3 records if NSEC3 is enabledd0b794dFix conditional compilation errors821bdbcAddress clippy lints5b0db27Merge branch 'main' into nsec3-signing-poc18db8bcAdd NxProof config📊 Changes
23 files changed (+713 additions, -34 deletions)
View changed files
📝
Cargo.lock(+1 -0)📝
bin/src/hickory-dns.rs(+12 -0)📝
crates/proto/src/rr/dnssec/nsec3.rs(+2 -1)📝
crates/server/Cargo.toml(+1 -0)📝
crates/server/src/authority/authority.rs(+18 -0)📝
crates/server/src/authority/authority_object.rs(+33 -0)📝
crates/server/src/authority/catalog.rs(+14 -1)📝
crates/server/src/authority/error.rs(+4 -0)📝
crates/server/src/config/mod.rs(+47 -0)📝
crates/server/src/store/file/authority.rs(+47 -4)📝
crates/server/src/store/forwarder/authority.rs(+17 -0)📝
crates/server/src/store/in_memory/authority.rs(+321 -13)📝
crates/server/src/store/recursor/authority.rs(+17 -0)📝
crates/server/src/store/sqlite/authority.rs(+31 -1)📝
crates/server/tests/config_tests.rs(+18 -0)📝
crates/server/tests/in_memory.rs(+6 -0)📝
crates/server/tests/store_file_tests.rs(+18 -1)📝
crates/server/tests/store_sqlite_tests.rs(+9 -0)📝
crates/server/tests/txt_tests.rs(+43 -4)📝
tests/integration-tests/src/example_authority.rs(+11 -2)...and 3 more files
📄 Description
This PR implements RFC 5155 including zone signing and serving of NSEC3 records.
The only unimplemented feature of the RFC is opt-out support.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.