From 3109ea0220da7f68402a4cec78093ad7b42e442d Mon Sep 17 00:00:00 2001 From: Eugene Pankov Date: Thu, 28 Oct 2021 09:08:06 +0200 Subject: [PATCH] re-added AES-GCM ciphers - fixes #4849, fixes #4846, fixes #4844 --- tabby-ssh/src/profiles.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tabby-ssh/src/profiles.ts b/tabby-ssh/src/profiles.ts index 1f3344b2..be533c6b 100644 --- a/tabby-ssh/src/profiles.ts +++ b/tabby-ssh/src/profiles.ts @@ -9,6 +9,8 @@ import { ALGORITHM_BLACKLIST, SSHAlgorithmType, SSHProfile } from './api' // Counteracts https://github.com/mscdex/ssh2/commit/f1b5ac3c81734c194740016eab79a699efae83d8 ALGORITHMS.DEFAULT_CIPHER.push('aes128-gcm') ALGORITHMS.DEFAULT_CIPHER.push('aes256-gcm') +ALGORITHMS.SUPPORTED_CIPHER.push('aes128-gcm') +ALGORITHMS.SUPPORTED_CIPHER.push('aes256-gcm') @Injectable({ providedIn: 'root' }) export class SSHProfilesService extends ProfileProvider {