From 1dc6a627fd602fbd71c0a707f1f3ab737117f065 Mon Sep 17 00:00:00 2001 From: Eugene Date: Sat, 24 Aug 2024 12:38:23 +0200 Subject: [PATCH] fixed #9830 - add ssh-rsa to default algos --- tabby-ssh/src/algorithms.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tabby-ssh/src/algorithms.ts b/tabby-ssh/src/algorithms.ts index 78c2526110..5452e24af2 100644 --- a/tabby-ssh/src/algorithms.ts +++ b/tabby-ssh/src/algorithms.ts @@ -25,6 +25,7 @@ export const defaultAlgorithms = { 'ecdsa-sha2-nistp521', 'rsa-sha2-256', 'rsa-sha2-512', + 'ssh-rsa', ], [SSHAlgorithmType.CIPHER]: [ 'chacha20-poly1305@openssh.com',