From ee0f45e25b932bba65aa231d9b2c247319c4396e Mon Sep 17 00:00:00 2001 From: nnposter Date: Mon, 21 Aug 2017 22:31:32 +0000 Subject: [PATCH] Renames SSH EdDSA key type to be consistent with OpenSSH --- nselib/ssh2.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nselib/ssh2.lua b/nselib/ssh2.lua index 2d039f929..b4644362b 100644 --- a/nselib/ssh2.lua +++ b/nselib/ssh2.lua @@ -315,7 +315,7 @@ fetch_host_key = function( host, port, key_type ) algorithm = "ECDSA" bits = "521" elseif key_type == 'ssh-ed25519' then - algorithm = "EdDSA" + algorithm = "ED25519" bits = "256" else stdnse.debug1("Unsupported key type: %s", key_type )