feat(dnssec): Introduced DNSSEC support with ECDSA algorithm

This commit is contained in:
2024-09-19 18:51:34 +02:00
parent 5278c2ce78
commit 74ac0c1287
4 changed files with 326 additions and 14 deletions

View File

@@ -1,5 +1,13 @@
# Changelog
## 2024-09-19 - 6.2.0 - feat(dnssec)
Introduced DNSSEC support with ECDSA algorithm
- Added `DnsSec` class for handling DNSSEC operations.
- Updated `DnsServer` to support DNSSEC with ECDSA.
- Shifted DNS-related helper functions to `DnsServer` class.
- Integrated parsing and handling of DNSKEY and RRSIG records in `DnsServer`.
## 2024-09-19 - 6.1.1 - fix(ts_server)
Update DnsSec class to fully implement key generation and DNSKEY record creation.