Skip to content

Commit

Permalink
JSch: Fix KeyPair.ED25519/DEFERRED conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
dcommander committed Oct 17, 2024
1 parent a8abe6c commit 209d84f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/com/jcraft/jsch/KeyPair.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public abstract class KeyPair{
public static final int ED25519=5;

// at the moment of loading the key, it is not clear which type it is, because it still needs to be decrypted
private static final int DEFERRED = 5;
private static final int DEFERRED = -1;
static final int VENDOR_OPENSSH=0;
static final int VENDOR_FSECURE=1;
static final int VENDOR_PUTTY=2;
Expand Down

0 comments on commit 209d84f

Please sign in to comment.