2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-02 23:55:27 +00:00

add RSA to the secalgs list in rdata.c (as a synonym for RSAMD5), remove the

special case code in dnssec-keygen to parse RSA.
This commit is contained in:
Brian Wellington
2001-11-15 19:44:52 +00:00
parent 36d8518388
commit d9af67ef70
2 changed files with 4 additions and 5 deletions

View File

@@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: rdata.c,v 1.153 2001/11/12 19:05:28 gson Exp $ */
/* $Id: rdata.c,v 1.154 2001/11/15 19:44:50 bwelling Exp $ */
#include <config.h>
#include <ctype.h>
@@ -274,6 +274,7 @@ static const char decdigits[] = "0123456789";
#define SECALGNAMES \
{ DNS_KEYALG_RSAMD5, "RSAMD5", 0 }, \
{ DNS_KEYALG_RSAMD5, "RSA", 0 }, \
{ DNS_KEYALG_DH, "DH", 0 }, \
{ DNS_KEYALG_DSA, "DSA", 0 }, \
{ DNS_KEYALG_ECC, "ECC", 0 }, \