diff options
author | Matt Johnston <matt@ucc.asn.au> | 2020-05-26 20:05:31 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2020-05-26 20:05:31 +0800 |
commit | 73aa4f0de998441d33d4d7be57ef2ba58f739013 (patch) | |
tree | 8eec7e64795be7185472a732e7cf7a59177d2707 | |
parent | 9e25854b419097f0328d6c3f582b01e29bb2d6be (diff) |
Get rid of unused "none" cipher option
-rw-r--r-- | common-runopts.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/common-runopts.c b/common-runopts.c index 62b9471..2762e1a 100644 --- a/common-runopts.c +++ b/common-runopts.c @@ -76,12 +76,6 @@ parse_ciphers_macs() dropbear_exit("."); } - if (strcmp(opts.cipher_list, "none") == 0) - { - /* Encryption is required during authentication */ - opts.cipher_list = "none,aes128-ctr"; - } - if (check_user_algos(opts.cipher_list, sshciphers, "cipher") == 0) { dropbear_exit("No valid ciphers specified for '-c'"); |