Mercurial > dropbear
comparison common-algo.c @ 503:0cdbc95bb3d2
- Get rid of blowfish and twofish CTR since they weren't likely
to be that useful
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Mon, 29 Sep 2008 14:30:47 +0000 |
parents | 43bbe17d6ba0 |
children | 582cb38e4eb5 e12c9225acbd |
comparison
equal
deleted
inserted
replaced
502:43bbe17d6ba0 | 503:0cdbc95bb3d2 |
---|---|
126 {"3des-ctr", 0, &dropbear_3des, 1, &dropbear_mode_ctr}, | 126 {"3des-ctr", 0, &dropbear_3des, 1, &dropbear_mode_ctr}, |
127 #endif | 127 #endif |
128 #ifdef DROPBEAR_AES256 | 128 #ifdef DROPBEAR_AES256 |
129 {"aes256-ctr", 0, &dropbear_aes256, 1, &dropbear_mode_ctr}, | 129 {"aes256-ctr", 0, &dropbear_aes256, 1, &dropbear_mode_ctr}, |
130 #endif | 130 #endif |
131 #ifdef DROPBEAR_TWOFISH256 | |
132 {"twofish256-ctr", 0, &dropbear_twofish256, 1, &dropbear_mode_ctr}, | |
133 #endif | |
134 #ifdef DROPBEAR_TWOFISH128 | |
135 {"twofish128-ctr", 0, &dropbear_twofish128, 1, &dropbear_mode_ctr}, | |
136 #endif | |
137 #ifdef DROPBEAR_BLOWFISH | |
138 {"blowfish-ctr", 0, &dropbear_blowfish, 1, &dropbear_mode_ctr}, | |
139 #endif | |
140 #endif /* DROPBEAR_ENABLE_CTR_MODE */ | 131 #endif /* DROPBEAR_ENABLE_CTR_MODE */ |
141 | 132 |
142 /* CBC modes are always enabled */ | 133 /* CBC modes are always enabled */ |
143 #ifdef DROPBEAR_AES128 | 134 #ifdef DROPBEAR_AES128 |
144 {"aes128-cbc", 0, &dropbear_aes128, 1, &dropbear_mode_cbc}, | 135 {"aes128-cbc", 0, &dropbear_aes128, 1, &dropbear_mode_cbc}, |