From: Mark Wooding Date: Wed, 26 Apr 2017 10:53:05 +0000 (+0100) Subject: pubkey.c, catacomb/__init__.py: Add bindings for Hamburg's X448. X-Git-Url: https://git.distorted.org.uk/~mdw/pyke/commitdiff_plain/51f4de84cd0eab5c07130ed5999b1cee151c728c pubkey.c, catacomb/__init__.py: Add bindings for Hamburg's X448. --- diff --git a/catacomb-python.h b/catacomb-python.h index 41c5292..d7e2543 100644 --- a/catacomb-python.h +++ b/catacomb-python.h @@ -88,6 +88,7 @@ #include #include #include +#include #include #include diff --git a/catacomb.c b/catacomb.c index d64a16e..9c83c9d 100644 --- a/catacomb.c +++ b/catacomb.c @@ -46,6 +46,7 @@ static const struct nameval consts[] = { C(KF_BURN), C(KF_OPT), C(EC_XONLY), C(EC_YBIT), C(EC_LSB), C(EC_CMPR), C(EC_EXPLY), C(EC_SORT), C(X25519_KEYSZ), C(X25519_PUBSZ), C(X25519_OUTSZ), + C(X448_KEYSZ), C(X448_PUBSZ), C(X448_OUTSZ), C(ED25519_KEYSZ), C(ED25519_PUBSZ), C(ED25519_SIGSZ), #define ENTRY(tag, val, str) C(KERR_##tag), KEY_ERRORS(ENTRY)