gerrit/lib/bouncycastle/BUCK
David Pursehouse cc0f002edf Revert "Exclude bouncycastle key files to fix SecurityException upon plugin-api"
During server startup the warning:

  Disabling cipher <name>: JCE cannot authenticate the provider BC

is emitted for each cipher [1],

and when using SSH, all git operations fail with the error:

  no matching cipher found [2].

This reverts commit 3420d83f39.

[1] http://paste.openstack.org/show/460590/
[2] http://paste.openstack.org/show/460591/

Change-Id: I8352d6074120f1c148a12d16a013da5965308d9e
2015-09-14 11:07:38 +09:00

29 lines
785 B
Python

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.52'
maven_jar(
name = 'bcprov',
id = 'org.bouncycastle:bcprov-jdk15on:' + VERSION,
sha1 = '88a941faf9819d371e3174b5ed56a3f3f7d73269',
license = 'DO_NOT_DISTRIBUTE', #'bouncycastle'
)
maven_jar(
name = 'bcpg',
id = 'org.bouncycastle:bcpg-jdk15on:' + VERSION,
sha1 = 'ff4665a4b5633ff6894209d5dd10b7e612291858',
license = 'DO_NOT_DISTRIBUTE', #'bouncycastle'
deps = [':bcprov'],
)
maven_jar(
name = 'bcpkix',
id = 'org.bouncycastle:bcpkix-jdk15on:' + VERSION,
sha1 = 'b8ffac2bbc6626f86909589c8cc63637cc936504',
license = 'DO_NOT_DISTRIBUTE', #'bouncycastle'
deps = [':bcprov'],
)