summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Ostrovsky <david@ostrovsky.org>2014-10-26 07:13:27 +0100
committerDavid Pursehouse <david.pursehouse@sonymobile.com>2014-11-06 22:30:40 +0900
commit13452f46ec340e26b04851ef208d386494326970 (patch)
tree9c666166ce9c4ff9b0e7e2d61459547aea946b14
parent5f7d5a7dc4cddbe3b04bb91746fd9661a35a48fe (diff)
Bump Bouncycastle version to 1.51
This version fixed some bugs [1] and latest SSHD release that we need has upgraded to this version as well: [2]. [1] https://www.bouncycastle.org/releasenotes.html [2] https://issues.apache.org/jira/browse/SSHD-362 Change-Id: I84aee1e620091bcd49a1f0be47f4da011a8ff3ee
-rw-r--r--gerrit-pgm/src/main/resources/com/google/gerrit/pgm/libraries.config12
-rw-r--r--lib/bouncycastle/BUCK8
2 files changed, 10 insertions, 10 deletions
diff --git a/gerrit-pgm/src/main/resources/com/google/gerrit/pgm/libraries.config b/gerrit-pgm/src/main/resources/com/google/gerrit/pgm/libraries.config
index b5e702f3d4..16bceeeb51 100644
--- a/gerrit-pgm/src/main/resources/com/google/gerrit/pgm/libraries.config
+++ b/gerrit-pgm/src/main/resources/com/google/gerrit/pgm/libraries.config
@@ -15,16 +15,16 @@
# Version should match lib/bouncycastle/BUCK
[library "bouncyCastleProvider"]
- name = Bouncy Castle Crypto Provider v149
- url = http://www.bouncycastle.org/download/bcprov-jdk15on-149.jar
- sha1 = f5155f04330459104b79923274db5060c1057b99
+ name = Bouncy Castle Crypto Provider v151
+ url = http://www.bouncycastle.org/download/bcprov-jdk15on-151.jar
+ sha1 = 9ab8afcc2842d5ef06eb775a0a2b12783b99aa80
remove = bcprov-.*[.]jar
# Version should match lib/bouncycastle/BUCK
[library "bouncyCastleSSL"]
- name = Bouncy Castle Crypto SSL v149
- url = http://www.bouncycastle.org/download/bcpkix-jdk15on-149.jar
- sha1 = 924cc7ad2f589630c97b918f044296ebf1bb6855
+ name = Bouncy Castle Crypto SSL v151
+ url = http://www.bouncycastle.org/download/bcpkix-jdk15on-151.jar
+ sha1 = 6c8c1f61bf27a09f9b1a8abc201523669bba9597
needs = bouncyCastleProvider
remove = bcpkix-.*[.]jar
diff --git a/lib/bouncycastle/BUCK b/lib/bouncycastle/BUCK
index 99f960e81c..d1ec48de1b 100644
--- a/lib/bouncycastle/BUCK
+++ b/lib/bouncycastle/BUCK
@@ -2,19 +2,19 @@ include_defs('//lib/maven.defs')
# This version must match the version that also appears in
# gerrit-pgm/src/main/resources/com/google/gerrit/pgm/libraries.config
-VERSION = '1.49'
+VERSION = '1.51'
maven_jar(
name = 'bcprov',
id = 'org.bouncycastle:bcprov-jdk15on:' + VERSION,
- sha1 = 'f5155f04330459104b79923274db5060c1057b99',
+ sha1 = '9ab8afcc2842d5ef06eb775a0a2b12783b99aa80',
license = 'DO_NOT_DISTRIBUTE', #'bouncycastle'
)
maven_jar(
name = 'bcpg',
id = 'org.bouncycastle:bcpg-jdk15on:' + VERSION,
- sha1 = '081d84be5b125e1997ab0e2244d1a2276b5de76c',
+ sha1 = 'b5fa4c280dfbf8bf7c260bc1e78044c7a1de5133',
license = 'DO_NOT_DISTRIBUTE', #'bouncycastle'
deps = [':bcprov'],
)
@@ -22,7 +22,7 @@ maven_jar(
maven_jar(
name = 'bcpkix',
id = 'org.bouncycastle:bcpkix-jdk15on:' + VERSION,
- sha1 = '924cc7ad2f589630c97b918f044296ebf1bb6855',
+ sha1 = '6c8c1f61bf27a09f9b1a8abc201523669bba9597',
license = 'DO_NOT_DISTRIBUTE', #'bouncycastle'
deps = [':bcprov'],
)