feat(compute): Updated server host key to use the secure ssh-ed25519 instead of old ssh-rsa algorithm

This commit is contained in:
Cristi 2026-04-30 17:56:05 +03:00
parent cc05eb5850
commit 9d451eb652

View File

@ -66,7 +66,7 @@ class AsyncioSSHServer:
self._broadcast_task = None
self._server = None
self._server_handle = None
self._host_key = asyncssh.generate_private_key("ssh-rsa")
self._host_key = asyncssh.generate_private_key("ssh-ed25519")
async def start(self, host, port):
if self._server is not None: