File tree Expand file tree Collapse file tree 7 files changed +17
-12
lines changed
build-tools-internal/src/main/groovy
src/docker/dockerfiles/cloud_ess_fips Expand file tree Collapse file tree 7 files changed +17
-12
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,11 @@ if (buildParams.inFipsJvm) {
23
23
File fipsSecurity = new File (fipsResourcesDir, javaSecurityFilename)
24
24
File fipsPolicy = new File (fipsResourcesDir, ' fips_java.policy' )
25
25
File fipsTrustStore = new File (fipsResourcesDir, ' cacerts.bcfks' )
26
- def bcFips = dependencies. create(' org.bouncycastle:bc-fips:1.0.2.5 ' )
26
+ def bcFips = dependencies. create(' org.bouncycastle:bc-fips:1.0.2.6 ' )
27
27
def bcTlsFips = dependencies. create(' org.bouncycastle:bctls-fips:1.0.19' )
28
28
def manualDebug = false ; // change this to manually debug bouncy castle in an IDE
29
29
if (manualDebug) {
30
- bcFips = dependencies. create(' org.bouncycastle:bc-fips-debug:1.0.2.5 ' )
30
+ bcFips = dependencies. create(' org.bouncycastle:bc-fips-debug:1.0.2.6 ' )
31
31
bcTlsFips = dependencies. create(' org.bouncycastle:bctls-fips:1.0.19' ){
32
32
exclude group : ' org.bouncycastle' , module : ' bc-fips' // to avoid jar hell
33
33
}
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ dependencies {
129
129
metricbeat_fips_aarch64
" beats:metricbeat-fips:${ VersionProperties.elasticsearch} :[email protected] "
130
130
metricbeat_fips_x86_64
" beats:metricbeat-fips:${ VersionProperties.elasticsearch} :[email protected] "
131
131
132
- fips " org.bouncycastle:bc-fips:1.0.2.5 "
132
+ fips " org.bouncycastle:bc-fips:1.0.2.6 "
133
133
fips " org.bouncycastle:bctls-fips:1.0.19"
134
134
}
135
135
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ RUN printf "\\n" | jdk/bin/keytool -importkeystore \
162
162
-deststorepass passwordcacert \
163
163
-deststoretype BCFKS \
164
164
-providerclass org.bouncycastle.jcajce.provider.BouncyCastleFipsProvider \
165
- -providerpath lib/bc-fips-1.0.2.5 .jar \
165
+ -providerpath lib/bc-fips-1.0.2.6 .jar \
166
166
-destprovidername BCFIPS
167
167
168
168
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ dependencies {
30
30
implementation ' org.ow2.asm:asm-tree:9.7.1'
31
31
32
32
api " org.bouncycastle:bcpg-fips:1.0.7.1"
33
- api " org.bouncycastle:bc-fips:1.0.2.5 "
33
+ api " org.bouncycastle:bc-fips:1.0.2.6 "
34
34
testImplementation project(" :test:framework" )
35
35
testImplementation " com.google.jimfs:jimfs:${ versions.jimfs} "
36
36
testRuntimeOnly " com.google.guava:guava:${ versions.jimfs_guava} "
Original file line number Diff line number Diff line change
1
+ pr : 133198
2
+ summary : Bump bc-fips to 1.0.2.6
3
+ area : FIPS
4
+ type : upgrade
5
+ issues : []
Original file line number Diff line number Diff line change 3463
3463
<sha256 value =" 5b8a26205f6d5ea60ad9ce65ce4a40a2afe4c48abeec61bd0740a088c24e89f5" origin =" Generated by Gradle" />
3464
3464
</artifact >
3465
3465
</component >
3466
- <component group =" org.bouncycastle" name =" bc-fips" version =" 1.0.2.5 " >
3467
- <artifact name =" bc-fips-1.0.2.5 .jar" >
3468
- <sha256 value =" 50e4c7a0d0c68413d3d8587560d56945ac09e7c89c41bd971cd22d76be6f1085 " origin =" Generated by Gradle" />
3466
+ <component group =" org.bouncycastle" name =" bc-fips" version =" 1.0.2.6 " >
3467
+ <artifact name =" bc-fips-1.0.2.6 .jar" >
3468
+ <sha256 value =" ae2a1ece67e86d0c5b852765a9d04cdb05abc4ed7aa90b3bf3fbab786d3fedbc " origin =" Generated by Gradle" />
3469
3469
</artifact >
3470
3470
</component >
3471
- <component group =" org.bouncycastle" name =" bc-fips-debug" version =" 1.0.2.5 " >
3472
- <artifact name =" bc-fips-debug-1.0.2.5 .jar" >
3473
- <sha256 value =" 5cfda7e020c5c1a3b1724386f139957472e551494254b8fc74e34f73590fc605 " origin =" Generated by Gradle" />
3471
+ <component group =" org.bouncycastle" name =" bc-fips-debug" version =" 1.0.2.6 " >
3472
+ <artifact name =" bc-fips-debug-1.0.2.6 .jar" >
3473
+ <sha256 value =" 6ac85ac9a5fa5e4a003cadf5cae8e4e586deb4ac9b3209b87aa353f7c2b93379 " origin =" Generated by Gradle" />
3474
3474
</artifact >
3475
3475
</component >
3476
3476
<component group =" org.bouncycastle" name =" bcpg-fips" version =" 1.0.7.1" >
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ dependencies {
70
70
testImplementation project(path : ' :modules:rest-root' )
71
71
testImplementation project(path : ' :modules:health-shards-availability' )
72
72
// Needed for Fips140ProviderVerificationTests
73
- testCompileOnly(' org.bouncycastle:bc-fips:1.0.2.5 ' )
73
+ testCompileOnly(' org.bouncycastle:bc-fips:1.0.2.6 ' )
74
74
75
75
testImplementation(project(' :x-pack:license-tools' )) {
76
76
transitive = false
You can’t perform that action at this time.
0 commit comments