2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 22:15:20 +00:00

2835. [bug] Key inactivity dates were inadvertently stored in

the private key file with the outdated tag
			"Unpublish" rather than "Inactive".  This has been
			fixed; however, any existing keys that had Inactive
			dates set will now need to have them reset, using
			'dnssec-settime -I'. [RT #20868]
This commit is contained in:
Evan Hunt
2010-01-08 17:15:36 +00:00
parent ef3c8caac4
commit 03e5afa4c0
2 changed files with 9 additions and 2 deletions

View File

@@ -1,3 +1,10 @@
2835. [bug] Key inactivity dates were inadvertently stored in
the private key file with the outdated tag
"Unpublish" rather than "Inactive". This has been
fixed; however, any existing keys that had Inactive
dates set will now need to have them reset, using
'dnssec-settime -I'. [RT #20868]
2834. [bug] HMAC-SHA* keys that were longer than the algorithm
digest length were used incorrectly, leading to
interoperability problems with other DNS

View File

@@ -31,7 +31,7 @@
/*%
* Principal Author: Brian Wellington
* $Id: dst_parse.c,v 1.23 2009/10/26 21:18:24 each Exp $
* $Id: dst_parse.c,v 1.24 2010/01/08 17:15:36 each Exp $
*/
#include <config.h>
@@ -62,7 +62,7 @@ static const char *timetags[TIMING_NTAGS] = {
"Publish:",
"Activate:",
"Revoke:",
"Unpublish:",
"Inactive:",
"Delete:",
"DSPublish:"
};