[PR #133] [MERGED] WIP: upgrade ring to 0.9.x #1258

Closed
opened 2026-03-16 01:56:43 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hickory-dns/hickory-dns/pull/133
Author: @bluejekyll
Created: 5/14/2017
Status: Merged
Merged: 5/17/2017
Merged by: @bluejekyll

Base: masterHead: upgrade_ring_0.9


📝 Commits (10+)

📊 Changes

23 files changed (+1254 additions, -968 deletions)

View changed files

📝 .travis.yml (+0 -5)
📝 CHANGELOG.md (+15 -0)
📝 Cargo.lock (+56 -54)
📝 Cargo.toml (+2 -1)
📝 client/Cargo.toml (+2 -2)
📝 client/src/client/secure_client_handle.rs (+7 -34)
📝 client/src/rr/dnssec/algorithm.rs (+2 -2)
client/src/rr/dnssec/hash.rs (+364 -0)
📝 client/src/rr/dnssec/key_format.rs (+102 -59)
📝 client/src/rr/dnssec/keypair.rs (+122 -374)
📝 client/src/rr/dnssec/mod.rs (+6 -0)
client/src/rr/dnssec/public_key.rs (+410 -0)
📝 client/src/rr/dnssec/signer.rs (+25 -366)
client/src/rr/dnssec/verifier.rs (+84 -0)
📝 client/src/rr/rdata/dnskey.rs (+2 -2)
📝 client/src/rr/rdata/key.rs (+2 -2)
📝 compatibility/src/none.rs (+1 -1)
📝 compatibility/tests/sig0_tests.rs (+9 -9)
📝 rustls/Cargo.toml (+2 -2)
📝 rustls/src/tls_stream.rs (+1 -1)

...and 3 more files

📄 Description

This is aimed at resolving #128 and #127


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hickory-dns/hickory-dns/pull/133 **Author:** [@bluejekyll](https://github.com/bluejekyll) **Created:** 5/14/2017 **Status:** ✅ Merged **Merged:** 5/17/2017 **Merged by:** [@bluejekyll](https://github.com/bluejekyll) **Base:** `master` ← **Head:** `upgrade_ring_0.9` --- ### 📝 Commits (10+) - [`f548766`](https://github.com/hickory-dns/hickory-dns/commit/f548766df3c53c03e6e87dca18dccc97cab5e0a8) add PublicKey and pkcs8 generate - [`f396e2a`](https://github.com/hickory-dns/hickory-dns/commit/f396e2a939af817237b9a30fb4b03f7e2d3755a9) add hash, and Verifier, cleanup DNSKEY usage - [`d3da571`](https://github.com/hickory-dns/hickory-dns/commit/d3da571c243e806ee820a87c62096ad2c1ed2967) cleanup key_format - [`5eab73e`](https://github.com/hickory-dns/hickory-dns/commit/5eab73e81505f686c6bc894d9ae234caf820070d) server compiling, all tests passing - [`b7fde9f`](https://github.com/hickory-dns/hickory-dns/commit/b7fde9f8b0c0539a70e90fc0603cb7038affdeac) cleanup warnings in standard build - [`ad7df7d`](https://github.com/hickory-dns/hickory-dns/commit/ad7df7deabb1362cf1966af209902320548bd737) Cleanup unneeded functions - [`ed594c0`](https://github.com/hickory-dns/hickory-dns/commit/ed594c0264637d678b40b2fabb18ee073aa704ee) fix --no-default-features - [`e17010a`](https://github.com/hickory-dns/hickory-dns/commit/e17010aab2bedc2d714f09bc08677cf34b9ec99a) update changelog - [`46d412c`](https://github.com/hickory-dns/hickory-dns/commit/46d412ca9f1a49978f25f5b73bd228cc135073bf) fix rustls build - [`28d619f`](https://github.com/hickory-dns/hickory-dns/commit/28d619f7fd48dc79f0ef7899a5fd839e56b04f87) update ring ### 📊 Changes **23 files changed** (+1254 additions, -968 deletions) <details> <summary>View changed files</summary> 📝 `.travis.yml` (+0 -5) 📝 `CHANGELOG.md` (+15 -0) 📝 `Cargo.lock` (+56 -54) 📝 `Cargo.toml` (+2 -1) 📝 `client/Cargo.toml` (+2 -2) 📝 `client/src/client/secure_client_handle.rs` (+7 -34) 📝 `client/src/rr/dnssec/algorithm.rs` (+2 -2) ➕ `client/src/rr/dnssec/hash.rs` (+364 -0) 📝 `client/src/rr/dnssec/key_format.rs` (+102 -59) 📝 `client/src/rr/dnssec/keypair.rs` (+122 -374) 📝 `client/src/rr/dnssec/mod.rs` (+6 -0) ➕ `client/src/rr/dnssec/public_key.rs` (+410 -0) 📝 `client/src/rr/dnssec/signer.rs` (+25 -366) ➕ `client/src/rr/dnssec/verifier.rs` (+84 -0) 📝 `client/src/rr/rdata/dnskey.rs` (+2 -2) 📝 `client/src/rr/rdata/key.rs` (+2 -2) 📝 `compatibility/src/none.rs` (+1 -1) 📝 `compatibility/tests/sig0_tests.rs` (+9 -9) 📝 `rustls/Cargo.toml` (+2 -2) 📝 `rustls/src/tls_stream.rs` (+1 -1) _...and 3 more files_ </details> ### 📄 Description This is aimed at resolving #128 and #127 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-16 01:56:43 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hickory-dns#1258
No description provided.