2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-31 06:05:12 +00:00

SSHD gets confused if spongycastle is present. Changed to BouncyCastle.

It sees it as bouncycastle, tries to load some clases by they classpath and
fails.
This commit is contained in:
Albert Vaca
2016-01-10 08:46:52 -08:00
parent 2421abea22
commit d07ff5a802
3 changed files with 14 additions and 15 deletions

View File

@@ -41,9 +41,9 @@ import org.kde.kdeconnect.Plugins.Plugin;
import org.kde.kdeconnect.Plugins.PluginFactory;
import org.kde.kdeconnect.UserInterface.MaterialActivity;
import org.kde.kdeconnect_tp.R;
import org.spongycastle.cert.X509CertificateHolder;
import org.spongycastle.cert.jcajce.JcaX509CertificateConverter;
import org.spongycastle.jce.provider.BouncyCastleProvider;
import org.bouncycastle.cert.X509CertificateHolder;
import org.bouncycastle.cert.jcajce.JcaX509CertificateConverter;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import java.security.KeyFactory;
import java.security.PrivateKey;