From: Thomas Wolf Date: Sun, 2 Dec 2018 15:35:12 +0000 (+0100) Subject: Include id_ed25519 in the known default identity files X-Git-Tag: v5.2.0.201812061821-r~4 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=450b196627b1830989274a540b95a04222c74342;p=jgit.git Include id_ed25519 in the known default identity files Change-Id: I9fb30c8fbb65536782ee73644c8990eb6661c660 Signed-off-by: Thomas Wolf --- 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 fd6301bb46..2b79d7105c 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 }; }