From: Rosen Penev Date: Sat, 11 Sep 2021 07:05:42 +0000 (-0700) Subject: fix wrong ed25519 information X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=738f36a1c31eda6d322e18c1b7fca4b6498e46a9;p=project%2Fluci.git fix wrong ed25519 information ECDH is not used for the ed25519. The scheme is called EdDSA. Signed-off-by: Rosen Penev --- diff --git a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js index 1e38a620fa..ae2c2b3de3 100644 --- a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js +++ b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js @@ -95,7 +95,7 @@ var SSHPubkeyDecoder = baseclass.singleton({ return { type: 'DSA', bits: len1 * 8, comment: comment, options: options, fprint: fprint, src: s }; case 'ssh-ed25519': - return { type: 'ECDH', curve: 'Curve25519', comment: comment, options: options, fprint: fprint, src: s }; + return { type: 'EdDSA', curve: 'Curve25519', comment: comment, options: options, fprint: fprint, src: s }; case 'ecdsa-sha2': return { type: 'ECDSA', curve: curve, comment: comment, options: options, fprint: fprint, src: s };