1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-05-30 05:24:50 +03:00

kex: Fix simpledes with gcrypt.

This commit is contained in:
Andreas Schneider 2012-09-25 15:29:38 +02:00
parent 3c5235fdc0
commit d0889dd9ea

View File

@ -39,7 +39,8 @@
# define BLOWFISH "blowfish-cbc,"
# define AES "aes256-ctr,aes192-ctr,aes128-ctr,aes256-cbc,aes192-cbc,aes128-cbc,"
# define DES "3des-cbc"
#elif defined HAVE_LIBCRYPTO
# define SIMPLEDES "des-cbc-ssh1"
#elif defined(HAVE_LIBCRYPTO)
# ifdef HAVE_OPENSSL_BLOWFISH_H
# define BLOWFISH "blowfish-cbc,"
# else
@ -54,7 +55,6 @@
# else
# define AES ""
# endif
# define DES "3des-cbc"
# define SIMPLEDES "des-cbc-ssh1"
#endif