From: Mark Wooding Date: Thu, 11 May 2017 09:42:15 +0000 (+0100) Subject: pubkey.c: Add support for Ed448 signatures, following RFC8032. X-Git-Url: https://git.distorted.org.uk/~mdw/pyke/commitdiff_plain/aa53a95ff66edd391aa9a5bd6df7ec33a7b5d1b5 pubkey.c: Add support for Ed448 signatures, following RFC8032. --- diff --git a/catacomb-python.h b/catacomb-python.h index 65f2ed1..0307701 100644 --- a/catacomb-python.h +++ b/catacomb-python.h @@ -92,6 +92,7 @@ #include #include #include +#include #include #include diff --git a/catacomb.c b/catacomb.c index 9e3b9cb..f9e8587 100644 --- a/catacomb.c +++ b/catacomb.c @@ -49,6 +49,7 @@ static const struct nameval consts[] = { C(X448_KEYSZ), C(X448_PUBSZ), C(X448_OUTSZ), C(ED25519_KEYSZ), C(ED25519_PUBSZ), C(ED25519_SIGSZ), C(ED25519_MAXPERSOSZ), + C(ED448_KEYSZ), C(ED448_PUBSZ), C(ED448_SIGSZ), C(ED448_MAXPERSOSZ), #define ENTRY(tag, val, str) C(KERR_##tag), KEY_ERRORS(ENTRY) #undef ENTRY