Support ssh-ed25519 keys
The newest version of OpenSSH supports a new, wonderful key type. authorized_key incorrectly discards pubkeys of this type as busted because it doesn't recognize type signature.
This commit is contained in:
parent
e798b558aa
commit
80e2c597a8
1 changed files with 1 additions and 0 deletions
|
@ -236,6 +236,7 @@ def parsekey(module, raw_key):
|
|||
'''
|
||||
|
||||
VALID_SSH2_KEY_TYPES = [
|
||||
'ssh-ed25519',
|
||||
'ecdsa-sha2-nistp256',
|
||||
'ecdsa-sha2-nistp384',
|
||||
'ecdsa-sha2-nistp521',
|
||||
|
|
Loading…
Reference in a new issue