mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-21 23:08:53 -04:00
Merge branch '4421-deprecate-AES-based-DNS-cookies-9.16' into 'bind-9.16'
[9.16] Deprecate AES algorithm for DNS cookies See merge request isc-projects/bind9!8487
This commit is contained in:
commit
ec0a756f6c
3 changed files with 8 additions and 1 deletions
2
CHANGES
2
CHANGES
|
|
@ -1,3 +1,5 @@
|
|||
6282. [func] Deprecate AES-based DNS cookies. [GL #4421]
|
||||
|
||||
--- 9.16.45 released ---
|
||||
|
||||
6269. [maint] B.ROOT-SERVERS.NET addresses are now 170.247.170.2 and
|
||||
|
|
|
|||
|
|
@ -25,7 +25,8 @@ New Features
|
|||
Removed Features
|
||||
~~~~~~~~~~~~~~~~
|
||||
|
||||
- None.
|
||||
- The support for AES algorithm for DNS cookies has been deprecated.
|
||||
:gl:`#4421`
|
||||
|
||||
Feature Changes
|
||||
~~~~~~~~~~~~~~~
|
||||
|
|
|
|||
|
|
@ -1457,6 +1457,10 @@ check_options(const cfg_obj_t *options, isc_log_t *logctx, isc_mem_t *mctx,
|
|||
(void)cfg_map_get(options, "cookie-algorithm", &obj);
|
||||
if (obj != NULL) {
|
||||
ccalg = cfg_obj_asstring(obj);
|
||||
if (strcasecmp(ccalg, "aes") == 0) {
|
||||
cfg_obj_log(obj, logctx, ISC_LOG_WARNING,
|
||||
"cookie-algorithm 'aes' is deprecated");
|
||||
}
|
||||
}
|
||||
|
||||
obj = NULL;
|
||||
|
|
|
|||
Loading…
Reference in a new issue