mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-02 03:52:49 -05:00
Support public keys using the "ssh-ed25519" method.
This introduces a third system of elliptic curve representation and arithmetic, namely Edwards form.
This commit is contained in:

committed by
Simon Tatham

parent
541abf9258
commit
76a4b576e5
@ -569,6 +569,8 @@ const struct ssh_signkey *find_pubkey_alg_len(int namelen, const char *name)
|
||||
return &ssh_ecdsa_nistp384;
|
||||
else if (match_ssh_id(namelen, name, "ecdsa-sha2-nistp521"))
|
||||
return &ssh_ecdsa_nistp521;
|
||||
else if (match_ssh_id(namelen, name, "ssh-ed25519"))
|
||||
return &ssh_ecdsa_ed25519;
|
||||
else
|
||||
return NULL;
|
||||
}
|
||||
|
Reference in New Issue
Block a user