From: Wouter Wijngaards Date: Thu, 8 Oct 2009 08:03:42 +0000 (+0000) Subject: more algorithms in algorithm lookup table X-Git-Tag: release-1.6.2~60 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1bd88e5646afceadecfd2ea443672b806abaf53c;p=thirdparty%2Fldns.git more algorithms in algorithm lookup table --- diff --git a/host2str.c b/host2str.c index 06e9a274..a8b09f88 100644 --- a/host2str.c +++ b/host2str.c @@ -44,6 +44,15 @@ ldns_lookup_table ldns_algorithms[] = { { LDNS_DSA, "DSA" }, { LDNS_ECC, "ECC" }, { LDNS_RSASHA1, "RSASHA1" }, + { LDNS_DSA_NSEC3, "DSA_NSEC3" }, + { LDNS_RSASHA1_NSEC3, "RSASHA1_NSEC3" }, +#ifdef USE_SHA2 + { LDNS_RSASHA256, "RSASHA256"}, + { LDNS_RSASHA512, "RSASHA512"}, +#endif +#ifdef USE_GOST + { LDNS_GOST, "GOST"}, +#endif { LDNS_INDIRECT, "INDIRECT" }, { LDNS_PRIVATEDNS, "PRIVATEDNS" }, { LDNS_PRIVATEOID, "PRIVATEOID" },