Skip to content

Commit

Permalink
libs: update mina-sshd to version 2.13.1
Browse files Browse the repository at this point in the history
Motivation:
major version update with support of newer and stronger cyphers and key
exchange algorithms

Modification:
Update mina-sshd to 2.13.1, added net.i2p.crypto:eddsa:0.3.0 dependency
for ssh-ed25519 key pairs.

Result:
state of the art ssh support

Fixes: #7273
Ticket: #10637, #10638
Acked-by: Lea Morschel
Target: master, 10.1, 10.0, 9.2
Require-book: no
Require-notes: yes
  • Loading branch information
kofemann committed Jul 26, 2024
1 parent fb1d797 commit 4043dd3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
5 changes: 5 additions & 0 deletions modules/dcache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,11 @@
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-core</artifactId>
</dependency>
<!-- For ed25519 support -->
<dependency>
<groupId>net.i2p.crypto</groupId>
<artifactId>eddsa</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
Expand Down
8 changes: 7 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -557,8 +557,14 @@
<dependency>
<groupId>org.apache.sshd</groupId>
<artifactId>sshd-core</artifactId>
<version>2.7.0</version>
<version>2.13.1</version>
</dependency>
<!-- For ed25519 support -->
<dependency>
<groupId>net.i2p.crypto</groupId>
<artifactId>eddsa</artifactId>
<version>0.3.0</version>
</dependency>
<dependency>
<!-- Newer versions have two problems. A performance regression causes it to block on non-responding network
interfaces (https://liquibase.jira.com/browse/CORE-2549). There is also an as of yet unreported regression
Expand Down

0 comments on commit 4043dd3

Please sign in to comment.