Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/humla.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Comminos <andrewcomminos@gmail.com>2014-08-24 02:43:20 +0400
committerAndrew Comminos <andrewcomminos@gmail.com>2014-08-24 02:43:20 +0400
commit343a1598eb947208df197a2de09a629e00d7ad59 (patch)
tree55882a57b5c0b1c8b36d93ec9b3bef4d12af098e /build.gradle
parentc75b7a5344092dc443a91d04c1aebe584668aaa6 (diff)
Use custom SpongyCastle libs with better PKCS12 parse support. Fixes
reading unencrypted mumble certificates.
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle9
1 files changed, 6 insertions, 3 deletions
diff --git a/build.gradle b/build.gradle
index dd257aa..dbb3fef 100644
--- a/build.gradle
+++ b/build.gradle
@@ -32,9 +32,12 @@ repositories {
dependencies {
compile 'com.android.support:support-v4:19.1.+'
compile 'com.google.protobuf:protobuf-java:2.5.0'
- compile 'com.madgag.spongycastle:core:1.50.0.0'
- compile 'com.madgag.spongycastle:prov:1.50.0.0'
- compile 'com.madgag.spongycastle:pkix:1.50.0.0'
+ compile 'com.madgag.spongycastle:core:1.51.0.0'
+
+ // Custom PKCS12 keybag parse modifications to support Mumble unencrypted certificates
+ // Source: https://github.com/Morlunk/spongycastle/tree/pkcs12-keybag-fixes
+ compile files('libs/sc-morlunk-prov-1.51.0.0.jar', 'libs/sc-morlunk-pkix-1.51.0.0.jar')
+
compile 'com.googlecode.javacpp:javacpp:0.7'
compile 'com.intellij:annotations:+@jar'
}