diff options
| author | Viacheslav Hletenko <v.gletenko@vyos.io> | 2022-11-18 14:07:19 +0000 | 
|---|---|---|
| committer | Viacheslav Hletenko <v.gletenko@vyos.io> | 2022-11-18 14:07:19 +0000 | 
| commit | 6458f99cc31bb8965648cf78149d2ac4088e0892 (patch) | |
| tree | dbbaceb4d0075b35289f0d68419caa5ed57e65ba | |
| parent | 0094bdfd15b4732a4be417f1777e903a41a8a954 (diff) | |
| download | vyos-1x-6458f99cc31bb8965648cf78149d2ac4088e0892.tar.gz vyos-1x-6458f99cc31bb8965648cf78149d2ac4088e0892.zip | |
T4826: Fix login pubkey key type ed25519-sk ecdsa-sk
Requires full key type name like sk-ecdsa-sha2-nistp256@openssh.com
and sk-ssh-ed25519@openssh.com
| -rw-r--r-- | interface-definitions/system-login.xml.in | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/interface-definitions/system-login.xml.in b/interface-definitions/system-login.xml.in index 027d3f587..e71a647ef 100644 --- a/interface-definitions/system-login.xml.in +++ b/interface-definitions/system-login.xml.in @@ -129,7 +129,7 @@                          <properties>                            <help>SSH public key type</help>                            <completionHelp> -                            <list>ssh-dss ssh-rsa ecdsa-sha2-nistp256 ecdsa-sha2-nistp384 ecdsa-sha2-nistp521 ssh-ed25519 ecdsa-sk ed25519-sk</list> +                            <list>ssh-dss ssh-rsa ecdsa-sha2-nistp256 ecdsa-sha2-nistp384 ecdsa-sha2-nistp521 ssh-ed25519 sk-ecdsa-sha2-nistp256@openssh.com sk-ssh-ed25519@openssh.com</list>                            </completionHelp>                            <valueHelp>                              <format>ssh-dss</format> @@ -156,15 +156,15 @@                              <description>Edwards-curve DSA with elliptic curve 25519</description>                            </valueHelp>                            <valueHelp> -                            <format>ecdsa-sk</format> +                            <format>sk-ecdsa-sha2-nistp256@openssh.com</format>                              <description>Elliptic Curve DSA security key</description>                            </valueHelp>                            <valueHelp> -                            <format>ed25519-sk</format> +                            <format>sk-ssh-ed25519@openssh.com</format>                              <description>Elliptic curve 25519 security key</description>                            </valueHelp>                            <constraint> -                            <regex>(ssh-dss|ssh-rsa|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|ecdsa-sk|ed25519-sk)</regex> +                            <regex>(ssh-dss|ssh-rsa|ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|sk-ecdsa-sha2-nistp256@openssh.com|sk-ssh-ed25519@openssh.com)</regex>                            </constraint>                          </properties>                        </leafNode> | 
