diff options
Diffstat (limited to 'sysoptions.h')
-rw-r--r-- | sysoptions.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysoptions.h b/sysoptions.h index efb27d8..58604f0 100644 --- a/sysoptions.h +++ b/sysoptions.h @@ -243,6 +243,9 @@ If you test it please contact the Dropbear author */ #error "At least one server authentication type must be enabled. DROPBEAR_SVR_PUBKEY_AUTH and DROPBEAR_SVR_PASSWORD_AUTH are recommended." #endif +#if (DROPBEAR_EPKA && !DROPBEAR_SVR_PUBKEY_AUTH) + #error "You must define DROPBEAR_SVR_PUBKEY_AUTH in order to use External Public Key Authentication (EPKA)" +#endif #if !(DROPBEAR_AES128 || DROPBEAR_3DES || DROPBEAR_AES256 || DROPBEAR_BLOWFISH \ || DROPBEAR_TWOFISH256 || DROPBEAR_TWOFISH128) |