diff options
author | Matt Johnston <matt@ucc.asn.au> | 2022-03-30 10:23:39 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2022-03-30 10:23:39 +0800 |
commit | 6dc029f2cbf84a6aab6b6e6a98e99670535be8f4 (patch) | |
tree | 9169eb66d1a4be76e75323898e394f9113cc9151 /crypto_desc.c | |
parent | 9d36e94deb014ca8c07d8ae8974e9b23820aa2d8 (diff) | |
download | dropbear-6dc029f2cbf84a6aab6b6e6a98e99670535be8f4.tar.gz |
Remove twofish and remnants of blowfish
Twofish CTR was never enabled by default and CBC modes are
deprecated
Diffstat (limited to 'crypto_desc.c')
-rw-r--r-- | crypto_desc.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/crypto_desc.c b/crypto_desc.c index 50b63dc..b370728 100644 --- a/crypto_desc.c +++ b/crypto_desc.c @@ -24,12 +24,6 @@ void crypto_init() { #if DROPBEAR_AES &aes_desc, #endif -#if DROPBEAR_BLOWFISH - &blowfish_desc, -#endif -#if DROPBEAR_TWOFISH - &twofish_desc, -#endif #if DROPBEAR_3DES &des3_desc, #endif |