From: Libor Peltan Date: Tue, 1 Jun 2021 15:10:14 +0000 (+0200) Subject: keymgr: bugfix: recognize textual representation of ED448 algorithm X-Git-Tag: v3.1.0~82^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b60227690abcd822b3ccc3bd005f3fbcc49a9415;p=thirdparty%2Fknot-dns.git keymgr: bugfix: recognize textual representation of ED448 algorithm --- diff --git a/src/utils/keymgr/functions.c b/src/utils/keymgr/functions.c index 2fbd0f6575..d625d77e32 100644 --- a/src/utils/keymgr/functions.c +++ b/src/utils/keymgr/functions.c @@ -124,6 +124,7 @@ static bool genkeyargs(int argc, char *argv[], bool just_timing, algnames[DNSSEC_KEY_ALGORITHM_ECDSA_P256_SHA256] = "ecdsap256sha256"; algnames[DNSSEC_KEY_ALGORITHM_ECDSA_P384_SHA384] = "ecdsap384sha384"; algnames[DNSSEC_KEY_ALGORITHM_ED25519] = "ed25519"; + algnames[DNSSEC_KEY_ALGORITHM_ED448] = "ed448"; // parse args for (int i = 0; i < argc; i++) {