1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-23 13:13:49 +03:00

ssh: re-allow aes*-gcm ciphers by default

This commit is contained in:
Eugene Pankov 2021-10-27 13:04:03 +02:00
parent 3da6f6ffa6
commit ed480a2954
No known key found for this signature in database
GPG Key ID: 5896FCBBDD1CF4F4

View File

@ -6,6 +6,9 @@ import { SSHTabComponent } from './components/sshTab.component'
import { PasswordStorageService } from './services/passwordStorage.service'
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')
@Injectable({ providedIn: 'root' })
export class SSHProfilesService extends ProfileProvider<SSHProfile> {