comparison crypto_desc.c @ 1915:13cb8cc1b0e4

Remove twofish and remnants of blowfish Twofish CTR was never enabled by default and CBC modes are deprecated
author Matt Johnston <matt@ucc.asn.au>
date Wed, 30 Mar 2022 10:23:39 +0800
parents 34d9d3c022ce
children 3f4cdf839a1a
comparison
equal deleted inserted replaced
1914:f978a15194ba 1915:13cb8cc1b0e4
21 void crypto_init() { 21 void crypto_init() {
22 22
23 const struct ltc_cipher_descriptor *regciphers[] = { 23 const struct ltc_cipher_descriptor *regciphers[] = {
24 #if DROPBEAR_AES 24 #if DROPBEAR_AES
25 &aes_desc, 25 &aes_desc,
26 #endif
27 #if DROPBEAR_BLOWFISH
28 &blowfish_desc,
29 #endif
30 #if DROPBEAR_TWOFISH
31 &twofish_desc,
32 #endif 26 #endif
33 #if DROPBEAR_3DES 27 #if DROPBEAR_3DES
34 &des3_desc, 28 &des3_desc,
35 #endif 29 #endif
36 NULL 30 NULL