You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2020/09/18 10:12:48 UTC

[camel] branch master updated: Regen website docs

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

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


The following commit(s) were added to refs/heads/master by this push:
     new b610ddf  Regen website docs
b610ddf is described below

commit b610ddf8d0ade38c4a694e0c37f8349112c9ad3d
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri Sep 18 12:12:17 2020 +0200

    Regen website docs
---
 docs/components/modules/ROOT/pages/ssh-component.adoc | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/docs/components/modules/ROOT/pages/ssh-component.adoc b/docs/components/modules/ROOT/pages/ssh-component.adoc
index bd5c3d8..75ef5de 100644
--- a/docs/components/modules/ROOT/pages/ssh-component.adoc
+++ b/docs/components/modules/ROOT/pages/ssh-component.adoc
@@ -203,28 +203,30 @@ An example of using Public Key authentication is provided in
 `examples/camel-example-ssh-security`.
 
 [[SSH-CertificateDependencies]]
-Certificate Dependencies
+== Certificate Dependencies
 
 You will need to add some additional runtime dependencies if you use
 certificate based authentication. You may need to use later versions depending what version
 of Camel you are using.
 
+The component uses `sshd-core` library which is based on either `bouncycastle` or `eddsa` security providers. `camel-ssh` is picking explicitly `bouncycastle` as security provider.
+
 [source,xml]
 -----------------------------------------
 <dependency>
   <groupId>org.apache.sshd</groupId>
   <artifactId>sshd-core</artifactId>
-  <version>0.8.0</version>
+  <version>2.0.0</version>
 </dependency>
 <dependency>
   <groupId>org.bouncycastle</groupId>
   <artifactId>bcpg-jdk15on</artifactId>
-  <version>1.47</version>
+  <version>1.65</version>
 </dependency>
 <dependency>
   <groupId>org.bouncycastle</groupId>
   <artifactId>bcpkix-jdk15on</artifactId>
-  <version>1.47</version>
+  <version>1.65</version>
 </dependency>
 -----------------------------------------