From 3b4efdda8b3a8a5926b3707b5eac914a62f10442 Mon Sep 17 00:00:00 2001 From: Noratrieb <48135649+Noratrieb@users.noreply.github.com> Date: Mon, 12 Aug 2024 18:18:36 +0200 Subject: [PATCH] prepare --- ssh-transport/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ssh-transport/src/lib.rs b/ssh-transport/src/lib.rs index 139326b..006de6f 100644 --- a/ssh-transport/src/lib.rs +++ b/ssh-transport/src/lib.rs @@ -170,7 +170,7 @@ impl ServerConnection { Ok(expected) } else { Err(client_error!( - "client does not supporte algorithm {expected}. supported: {list:?}", + "client does not support algorithm {expected}. supported: {list:?}", )) } }; @@ -189,7 +189,7 @@ impl ServerConnection { let server_host_key_algorithm = require_algorithm("ssh-ed25519", kex.server_host_key_algorithms)?; - // TODO: support aes128-ctr (aes-gcm is not supported by everyone) + // TODO: support aes256-gcm@openssh.com let encryption_algorithm_client_to_server = require_algorithm( "chacha20-poly1305@openssh.com", kex.encryption_algorithms_client_to_server,