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:11:48 UTC

[camel] branch master updated: doc(ssh): mention the explicit usage of bouncycastle over eddsa (#4246)

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 a1899fe  doc(ssh): mention the explicit usage of bouncycastle over eddsa (#4246)
a1899fe is described below

commit a1899fe32ff46877af33db29a7ed947bea54bd4a
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Fri Sep 18 12:11:21 2020 +0200

    doc(ssh): mention the explicit usage of bouncycastle over eddsa (#4246)
    
    Close CAMEL-15550
---
 components/camel-ssh/src/main/docs/ssh-component.adoc | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/components/camel-ssh/src/main/docs/ssh-component.adoc b/components/camel-ssh/src/main/docs/ssh-component.adoc
index f29927e..fbc9c4a 100644
--- a/components/camel-ssh/src/main/docs/ssh-component.adoc
+++ b/components/camel-ssh/src/main/docs/ssh-component.adoc
@@ -201,28 +201,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>
 -----------------------------------------