From aa53a95ff66edd391aa9a5bd6df7ec33a7b5d1b5 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Thu, 11 May 2017 10:42:15 +0100 Subject: [PATCH] pubkey.c: Add support for Ed448 signatures, following RFC8032. --- catacomb-python.h | 1 + catacomb.c | 1 + 2 files changed, 2 insertions(+) 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 -- 2.11.0