mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-23 00:51:01 +03:00
[FIX] Защита от дурака (отсутствие библиотек)
This commit is contained in:
parent
f6d954827e
commit
9084361a38
1 changed files with 7 additions and 1 deletions
|
@ -61,7 +61,13 @@ public static void main(String[] args) throws Exception {
|
||||||
Path privateKeyFile = dir.resolve("private.key");
|
Path privateKeyFile = dir.resolve("private.key");
|
||||||
ECPublicKey publicKey;
|
ECPublicKey publicKey;
|
||||||
ECPrivateKey privateKey;
|
ECPrivateKey privateKey;
|
||||||
Security.addProvider(new BouncyCastleProvider());
|
try {
|
||||||
|
Class.forName("org.bouncycastle.jce.provider.BouncyCastleProvider");
|
||||||
|
Security.addProvider(new BouncyCastleProvider());
|
||||||
|
} catch (ClassNotFoundException ex) {
|
||||||
|
LogHelper.error("Library BouncyCastle not found! Is directory 'libraries' empty?");
|
||||||
|
return;
|
||||||
|
}
|
||||||
CertificateManager certificateManager = new CertificateManager();
|
CertificateManager certificateManager = new CertificateManager();
|
||||||
try {
|
try {
|
||||||
certificateManager.readTrustStore(dir.resolve("truststore"));
|
certificateManager.readTrustStore(dir.resolve("truststore"));
|
||||||
|
|
Loading…
Reference in a new issue