From d2ef10d87a9bd17519596da4415181753e9445e2 Mon Sep 17 00:00:00 2001 From: Stefan Majer Date: Wed, 13 Nov 2024 11:20:00 +0100 Subject: [PATCH] Support ECDSA Public ssh keys --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index ae8f604f..6a64bbd7 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -35,7 +35,7 @@ const ( ) var ( - defaultSSHKeys = [...]string{"id_ed25519", "id_rsa", "id_dsa"} + defaultSSHKeys = [...]string{"id_ed25519", "id_ecdsa", "id_rsa", "id_dsa"} // emptyBody is kind of hack because post with "nil" will result into 406 error from the api emptyBody = []string{} )