Remove bouncycastle dependency from util

This commit is contained in:
Cube
2016-03-04 18:59:02 +02:00
parent bde4061b8a
commit d45b8ef846
2 changed files with 1 additions and 8 deletions
@@ -86,7 +86,7 @@ public final class NetworkConstants {
RSA_MODULUS = privateKey.getModulus();
RSA_EXPONENT = privateKey.getPrivateExponent();
} catch (Exception exception) {
throw new ExceptionInInitializerError(new IOException("Error parsing id_rsa", exception));
throw new ExceptionInInitializerError(new IOException("Error parsing rsa.pem", exception));
}
}
-7
View File
@@ -23,11 +23,4 @@
<testSourceDirectory>src/test</testSourceDirectory>
</build>
<dependencies>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk15on</artifactId>
</dependency>
</dependencies>
</project>