mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add support for Ed25519 keys.
Reported by: mwlucas MFH: 2 weeks
This commit is contained in:
parent
724c3e47f6
commit
6533da453a
2 changed files with 3 additions and 0 deletions
|
|
@ -137,6 +137,8 @@ SSH2 RSA key
|
|||
SSH2 DSA key
|
||||
.It Pa $HOME/.ssh/id_ecdsa
|
||||
SSH2 ECDSA key
|
||||
.It Pa $HOME/.ssh/id_ed25519
|
||||
SSH2 Ed25519 key
|
||||
.El
|
||||
.Sh SEE ALSO
|
||||
.Xr ssh-agent 1 ,
|
||||
|
|
|
|||
|
|
@ -81,6 +81,7 @@ static const char *pam_ssh_keyfiles[] = {
|
|||
".ssh/id_rsa", /* SSH2 RSA key */
|
||||
".ssh/id_dsa", /* SSH2 DSA key */
|
||||
".ssh/id_ecdsa", /* SSH2 ECDSA key */
|
||||
".ssh/id_ed25519", /* SSH2 Ed25519 key */
|
||||
NULL
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue