mirror of
https://github.com/clearml/dropbear
synced 2025-02-07 13:21:15 +00:00
- Get rid of blowfish and twofish CTR since they weren't likely
to be that useful --HG-- extra : convert_revision : e16bd265bb6e8093b3488993dffc86662a2a7a62
This commit is contained in:
parent
511f6555c9
commit
c2bd79131a
@ -128,15 +128,6 @@ algo_type sshciphers[] = {
|
|||||||
#ifdef DROPBEAR_AES256
|
#ifdef DROPBEAR_AES256
|
||||||
{"aes256-ctr", 0, &dropbear_aes256, 1, &dropbear_mode_ctr},
|
{"aes256-ctr", 0, &dropbear_aes256, 1, &dropbear_mode_ctr},
|
||||||
#endif
|
#endif
|
||||||
#ifdef DROPBEAR_TWOFISH256
|
|
||||||
{"twofish256-ctr", 0, &dropbear_twofish256, 1, &dropbear_mode_ctr},
|
|
||||||
#endif
|
|
||||||
#ifdef DROPBEAR_TWOFISH128
|
|
||||||
{"twofish128-ctr", 0, &dropbear_twofish128, 1, &dropbear_mode_ctr},
|
|
||||||
#endif
|
|
||||||
#ifdef DROPBEAR_BLOWFISH
|
|
||||||
{"blowfish-ctr", 0, &dropbear_blowfish, 1, &dropbear_mode_ctr},
|
|
||||||
#endif
|
|
||||||
#endif /* DROPBEAR_ENABLE_CTR_MODE */
|
#endif /* DROPBEAR_ENABLE_CTR_MODE */
|
||||||
|
|
||||||
/* CBC modes are always enabled */
|
/* CBC modes are always enabled */
|
||||||
|
@ -86,7 +86,8 @@ etc) slower (perhaps by 50%). Recommended for most small systems. */
|
|||||||
#define DROPBEAR_TWOFISH128
|
#define DROPBEAR_TWOFISH128
|
||||||
|
|
||||||
/* Enable "Counter Mode" for ciphers. This is more secure than normal
|
/* Enable "Counter Mode" for ciphers. This is more secure than normal
|
||||||
* CBC mode against certain attacks. TODO how much size does it add? */
|
* CBC mode against certain attacks. This adds around 1kB to binary
|
||||||
|
* size and is recommended for most cases */
|
||||||
#define DROPBEAR_ENABLE_CTR_MODE
|
#define DROPBEAR_ENABLE_CTR_MODE
|
||||||
|
|
||||||
/* Message Integrity - at least one required.
|
/* Message Integrity - at least one required.
|
||||||
|
Loading…
Reference in New Issue
Block a user