~jan0sch/smederee

Showing details for patch 3f3c70e0f9ff827c3a8422d83639c78936c387c4.
2023-12-01 (Fri), 9:44 PM - Jens Grassel - 3f3c70e0f9ff827c3a8422d83639c78936c387c4

Hub: Add experimental support for ed25519 ssh keys.

Summary of changes
1 files modified with 2 lines added and 0 lines removed
  • build.sbt with 2 added and 0 removed lines
diff -rN -u old-smederee/build.sbt new-smederee/build.sbt
--- old-smederee/build.sbt	2025-01-13 11:56:29.875267071 +0000
+++ new-smederee/build.sbt	2025-01-13 11:56:29.875267071 +0000
@@ -157,6 +157,7 @@
                 library.doobieCore,
                 library.doobieHikari,
                 library.doobiePostgres,
+                library.ed25519Java, // FIXME: Replace with BouncyCastle once implemented in Mina-SSHD!
                 library.flywayCore,
                 library.http4sCirce,
                 library.http4sCore,
@@ -457,6 +458,7 @@
         val doobieHikari               = "org.tpolecat"    %% "doobie-hikari"                  % Version.doobie
         val doobiePostgres             = "org.tpolecat"    %% "doobie-postgres"                % Version.doobie
         val doobieScalaTest            = "org.tpolecat"    %% "doobie-scalatest"               % Version.doobie
+        val ed25519Java                = "net.i2p.crypto"   % "eddsa"                          % "0.3.0"
         val flywayCore                 = "org.flywaydb"     % "flyway-core"                    % Version.flyway
         val fs2Core                    = "co.fs2"          %% "fs2-core"                       % Version.fs2
         val fs2IO                      = "co.fs2"          %% "fs2-io"                         % Version.fs2