]> git.ipfire.org Git - thirdparty/knot-dns.git/commitdiff
keymgr: bugfix: recognize textual representation of ED448 algorithm
authorLibor Peltan <libor.peltan@nic.cz>
Tue, 1 Jun 2021 15:10:14 +0000 (17:10 +0200)
committerLibor Peltan <libor.peltan@nic.cz>
Tue, 1 Jun 2021 15:10:14 +0000 (17:10 +0200)
src/utils/keymgr/functions.c

index 2fbd0f6575e585154e9357d04522c918544291fe..d625d77e326ec8a560c029173b185c8b89a38250 100644 (file)
@@ -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++) {