fix wrong ed25519 information
authorRosen Penev <rosenp@gmail.com>
Sat, 11 Sep 2021 07:05:42 +0000 (00:05 -0700)
committerJo-Philipp Wich <jo@mein.io>
Fri, 22 Oct 2021 18:35:03 +0000 (20:35 +0200)
ECDH is not used for the ed25519. The scheme is called EdDSA.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
(cherry picked from commit 738f36a1c31eda6d322e18c1b7fca4b6498e46a9)

modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js

index 1e38a620fae5a46398e9b88614bbbe09a0a33e96..ae2c2b3de3ef331283d9eda82d1686317fbc0629 100644 (file)
@@ -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 };