diff options
author | Florian Zschocke <2362065+flaix@users.noreply.github.com> | 2022-10-16 17:23:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-16 17:23:48 +0200 |
commit | 3c54c9f73678d86cf34edf6d0ef3a727ca8286c0 (patch) | |
tree | fe2566413bba71a09cd8cc8b32af6715827a0e33 /src/test/java | |
parent | 541472fe1d74130d8f0105331a1d16c07c676027 (diff) | |
parent | 57365bf17dfc2ed222a5bf347dd83a9c228cae1a (diff) | |
download | gitblit-3c54c9f73678d86cf34edf6d0ef3a727ca8286c0.tar.gz gitblit-3c54c9f73678d86cf34edf6d0ef3a727ca8286c0.zip |
Merge pull request #1427 from flaix/ssh-upate
Update SSHD to version 1.7.0 and add support for EdDSA user keys
Diffstat (limited to 'src/test/java')
-rw-r--r-- | src/test/java/com/gitblit/tests/LdapPublicKeyManagerTest.java | 2 | ||||
-rw-r--r-- | src/test/java/com/gitblit/tests/SshUnitTest.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/java/com/gitblit/tests/LdapPublicKeyManagerTest.java b/src/test/java/com/gitblit/tests/LdapPublicKeyManagerTest.java index c426254f..1ec6671a 100644 --- a/src/test/java/com/gitblit/tests/LdapPublicKeyManagerTest.java +++ b/src/test/java/com/gitblit/tests/LdapPublicKeyManagerTest.java @@ -28,7 +28,7 @@ import java.util.HashMap; import java.util.List; import java.util.Map; -import org.apache.sshd.common.util.SecurityUtils; +import org.apache.sshd.common.util.security.SecurityUtils; import org.junit.BeforeClass; import org.junit.Test; import org.junit.runner.RunWith; diff --git a/src/test/java/com/gitblit/tests/SshUnitTest.java b/src/test/java/com/gitblit/tests/SshUnitTest.java index 2f65fe99..acb0269c 100644 --- a/src/test/java/com/gitblit/tests/SshUnitTest.java +++ b/src/test/java/com/gitblit/tests/SshUnitTest.java @@ -36,7 +36,7 @@ import org.apache.sshd.client.future.AuthFuture; import org.apache.sshd.client.keyverifier.ServerKeyVerifier; import org.apache.sshd.client.session.ClientSession; import org.apache.sshd.common.config.keys.FilePasswordProvider; -import org.apache.sshd.common.util.SecurityUtils; +import org.apache.sshd.common.util.security.SecurityUtils; import org.eclipse.jgit.lib.Config; import org.eclipse.jgit.storage.file.FileBasedConfig; import org.eclipse.jgit.util.FS; |