From e817b63775f5d9abe6965c1bbb4090fc4a78c628 Mon Sep 17 00:00:00 2001 From: Noratrieb <48135649+Noratrieb@users.noreply.github.com> Date: Mon, 12 Aug 2024 23:10:04 +0200 Subject: [PATCH] add next todo --- ssh-transport/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ssh-transport/src/lib.rs b/ssh-transport/src/lib.rs index 0cb5217..3bb078f 100644 --- a/ssh-transport/src/lib.rs +++ b/ssh-transport/src/lib.rs @@ -195,6 +195,7 @@ impl ServerConnection { let kex_algorithm = kex_algorithms.find(kex.kex_algorithms.0)?; debug!(name = %kex_algorithm.name(), "Using KEX algorithm"); + // TODO: support ecdsa-sha2-nistp256 let server_host_key_algorithm = require_algorithm("ssh-ed25519", kex.server_host_key_algorithms)?;