summaryrefslogtreecommitdiffhomepage
path: root/sysoptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'sysoptions.h')
-rw-r--r--sysoptions.h11
1 files changed, 7 insertions, 4 deletions
diff --git a/sysoptions.h b/sysoptions.h
index a6b1364..af3efe4 100644
--- a/sysoptions.h
+++ b/sysoptions.h
@@ -60,10 +60,13 @@
#define DROPBEAR_SUCCESS 0
#define DROPBEAR_FAILURE -1
-#define DROPBEAR_SIGNKEY_ANY 0
-#define DROPBEAR_SIGNKEY_RSA 1
-#define DROPBEAR_SIGNKEY_DSS 2
-#define DROPBEAR_SIGNKEY_NONE 3
+enum {
+ DROPBEAR_SIGNKEY_ANY,
+ DROPBEAR_SIGNKEY_RSA,
+ DROPBEAR_SIGNKEY_DSS,
+ DROPBEAR_SIGNKEY_ECDSA,
+ DROPBEAR_SIGNKEY_NONE,
+};
/* Required for pubkey auth */
#if defined(ENABLE_SVR_PUBKEY_AUTH) || defined(DROPBEAR_CLIENT)