From 80e2c597a89e061256b022f64e24aea3fed39293 Mon Sep 17 00:00:00 2001 From: Laurens Van Houtven <_@lvh.cc> Date: Fri, 28 Feb 2014 18:46:54 +0100 Subject: [PATCH] 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. --- library/system/authorized_key | 1 + 1 file changed, 1 insertion(+) diff --git a/library/system/authorized_key b/library/system/authorized_key index fb44b4450f2..1a7c8b97b0e 100644 --- a/library/system/authorized_key +++ b/library/system/authorized_key @@ -236,6 +236,7 @@ def parsekey(module, raw_key): ''' VALID_SSH2_KEY_TYPES = [ + 'ssh-ed25519', 'ecdsa-sha2-nistp256', 'ecdsa-sha2-nistp384', 'ecdsa-sha2-nistp521',