You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2022/12/07 18:29:39 UTC

[camel] branch main updated: CAMEL-18804 update documentation (#8861)

This is an automated email from the ASF dual-hosted git repository.

davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new ff2a4ece62b CAMEL-18804 update documentation (#8861)
ff2a4ece62b is described below

commit ff2a4ece62bedafbc5d4ff7067a9895abebcc2c7
Author: Maarten Donderwinkel <ma...@donderwinkel.org>
AuthorDate: Wed Dec 7 19:29:31 2022 +0100

    CAMEL-18804 update documentation (#8861)
    
    Update documentation for applicable algorithms supported according to http://www.jcraft.com/jsch/README.
    Remove ed25519
---
 .../org/apache/camel/component/file/remote/SftpConfiguration.java     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java
index 5c34df7e8e4..cca314e163c 100644
--- a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java
+++ b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/SftpConfiguration.java
@@ -373,7 +373,7 @@ public class SftpConfiguration extends RemoteFileConfiguration {
 
     /**
      * Set a comma separated list of algorithms supported for the server host key. Some examples include:
-     * ssh-ed25519,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,rsa-sha2-512,rsa-sha2-256 If not
+     * ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521. If not
      * specified the default list from JSCH will be used.
      */
     public void setServerHostKeys(String serverHostKeys) {
@@ -386,7 +386,7 @@ public class SftpConfiguration extends RemoteFileConfiguration {
 
     /**
      * Set a comma separated list of public key accepted algorithms. Some examples include:
-     * ssh-ed25519,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,rsa-sha2-512,rsa-sha2-256 If not
+     * ssh-dss,ssh-rsa,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521.  If not
      * specified the default list from JSCH will be used.
      */
     public void setPublicKeyAcceptedAlgorithms(String publicKeyAcceptedAlgorithms) {