From efe4328cbd86314d6defbf5b83b17d41f87ce8d3 Mon Sep 17 00:00:00 2001 From: Jeremy Norris Date: Tue, 24 Jan 2023 14:34:06 -0600 Subject: [PATCH] Update ChangeLog. --- ChangeLog.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ChangeLog.md b/ChangeLog.md index b1eec48c..772956c4 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -13,6 +13,10 @@ * PKCS8 keys using SCrypt requires [Bouncy Castle](https://www.bouncycastle.org/java.html) (bcprov-jdk18on). * Add support for EdDSA type PKCS8 keys. * EdDSA type PKCS8 keys requires [Bouncy Castle](https://www.bouncycastle.org/java.html) (bcprov-jdk18on). + * Attempt to authenticate using other signature algorithms supported by the same public key. + * Allow this behavior to be disabled via `try_additional_pubkey_algorithms` config option. + * Some servers incorrectly respond with `SSH_MSG_USERAUTH_PK_OK` to an initial auth query that they don't actually support for RSA keys. + * Add a new config option `enable_pubkey_auth_query` to allow skipping auth queries and proceed directly to attempting full `SSH_MSG_USERAUTH_REQUEST`'s. * [0.2.6](https://github.com/mwiede/jsch/releases/tag/jsch-0.2.6) * Include host alias instead of the real host in messages and exceptions by @ShadelessFox in https://github.com/mwiede/jsch/pull/257 * Fix missing keySize set when loading V1 RSA keys by @Alex-Vol-Amz in https://github.com/mwiede/jsch/pull/258