From 9dbf517e8a24391bc1cb3cafbf17c84741a15277 Mon Sep 17 00:00:00 2001 From: Gilbert Chen Date: Sat, 2 Dec 2017 21:14:40 -0500 Subject: [PATCH] Remove aes128-cbc from the supported ciphers by HiDrive --- src/duplicacy_sftpstorage.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/duplicacy_sftpstorage.go b/src/duplicacy_sftpstorage.go index 1a75cec..fae4ced 100644 --- a/src/duplicacy_sftpstorage.go +++ b/src/duplicacy_sftpstorage.go @@ -53,7 +53,7 @@ func CreateSFTPStorage(server string, port int, username string, storageDir stri } if server == "sftp.hidrive.strato.com" { - sftpConfig.Ciphers = []string{"aes128-cbc", "aes128-ctr", "aes256-ctr"} + sftpConfig.Ciphers = []string{"aes128-ctr", "aes256-ctr"} } serverAddress := fmt.Sprintf("%s:%d", server, port)