mirror of
https://github.com/hickory-dns/hickory-dns.git
synced 2026-04-25 03:05:51 +03:00
[PR #2589] [MERGED] Add support for ring-based RSA signing keys #3163
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#3163
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/2589
Author: @djc
Created: 11/19/2024
Status: ✅ Merged
Merged: 12/5/2024
Merged by: @djc
Base:
main← Head:ring-rsa📝 Commits (10+)
3e9dee3proto: split key_format modulea447686proto: explicitly pick a signing backend in DNSSEC codecb2db3fproto: add support for ring-based RSA signing keysb673981Switch integration tests to use ring for DNSSECc7aebceAvoid mandatory openssl dependenciesf792246Remove unnecessary allow()b7a94b5tests: enable logging in SIG0 compatibility tests23bd9b4tests: fix paths to config files05b24edbin: fix Windows build failure00fd40cci: re-enable Windows📊 Changes
24 files changed (+226 additions, -160 deletions)
View changed files
📝
.github/workflows/test.yml(+6 -3)📝
Cargo.lock(+1 -1)📝
bin/src/hickory-dns.rs(+7 -6)📝
crates/proto/Cargo.toml(+0 -1)➖
crates/proto/src/dnssec/key_format.rs(+0 -79)📝
crates/proto/src/dnssec/mod.rs(+27 -16)📝
crates/proto/src/dnssec/openssl.rs(+39 -0)📝
crates/proto/src/dnssec/ring.rs(+96 -1)📝
crates/proto/src/dnssec/signer.rs(+4 -2)📝
crates/proto/src/rustls/mod.rs(+2 -1)📝
crates/proto/src/rustls/tests.rs(+6 -8)➕
crates/proto/tests/test-data/rsa-2048-private-key-1.pk8(+0 -0)➕
crates/proto/tests/test-data/rsa-2048-private-key-2.pk8(+0 -0)📝
justfile(+10 -3)📝
tests/compatibility-tests/Cargo.toml(+2 -2)➕
tests/compatibility-tests/tests/conf/Kupdate.example.com.+008+56935.pk8(+0 -0)📝
tests/compatibility-tests/tests/conf/bind-example.conf(+5 -5)📝
tests/compatibility-tests/tests/integration/sig0_tests.rs(+9 -21)📝
tests/integration-tests/Cargo.toml(+0 -2)📝
tests/integration-tests/src/example_authority.rs(+5 -4)...and 4 more files
📄 Description
Switch tests to use ring by default and run CI on Windows.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.