From 450b196627b1830989274a540b95a04222c74342 Mon Sep 17 00:00:00 2001 From: Thomas Wolf Date: Sun, 2 Dec 2018 16:35:12 +0100 Subject: [PATCH] Include id_ed25519 in the known default identity files Change-Id: I9fb30c8fbb65536782ee73644c8990eb6661c660 Signed-off-by: Thomas Wolf --- .../src/org/eclipse/jgit/transport/SshConstants.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/SshConstants.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/SshConstants.java index fd6301bb4..2b79d7105 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/SshConstants.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/SshConstants.java @@ -197,6 +197,6 @@ public final class SshConstants { /** All known default identity file names. */ public static final String[] DEFAULT_IDENTITIES = { // - ID_RSA, ID_DSA, ID_ECDSA // , ID_ED25519 // not yet... + ID_RSA, ID_DSA, ID_ECDSA, ID_ED25519 }; }