From 70ed69c4b04a5945a699b33e0bc998f8e8c4117f Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Thu, 26 May 2016 09:26:09 +0100 Subject: [PATCH] pubkey.c, ...: Support Bernstein's `Ed25519' signature scheme. --- catacomb-python.h | 1 + catacomb.c | 1 + 2 files changed, 2 insertions(+) diff --git a/catacomb-python.h b/catacomb-python.h index 679920f..41c5292 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 1d6f7f6..d64a16e 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(ED25519_KEYSZ), C(ED25519_PUBSZ), C(ED25519_SIGSZ), #define ENTRY(tag, val, str) C(KERR_##tag), KEY_ERRORS(ENTRY) #undef ENTRY -- 2.11.0