Skip to content

Commit

Permalink
Fix missing bcutil-fips (#7)
Browse files Browse the repository at this point in the history
Signed-off-by: Olivier Lamy <olamy@apache.org>
  • Loading branch information
olamy authored Oct 18, 2024
1 parent 7e28cee commit aa80927
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,11 @@
<artifactId>bcpkix-fips</artifactId>
<version>2.0.7</version>
</artifactItem>
<artifactItem>
<groupId>org.bouncycastle</groupId>
<artifactId>bcutil-fips</artifactId>
<version>2.0.3</version>
</artifactItem>
<artifactItem>
<groupId>org.bouncycastle</groupId>
<artifactId>bctls-fips</artifactId>
Expand Down
1 change: 1 addition & 0 deletions src/main/java/io/jenkins/test/fips/FIPS1403BC2x.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ public List<File> getBootClasspathFiles() throws IOException {
return List.of(
extractJar("bc-fips.jar").toFile(),
extractJar("bcpkix-fips.jar").toFile(),
extractJar("bcutil-fips.jar").toFile(),
extractJar("bctls-fips.jar").toFile());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ public void get_fips1402x() throws Exception {
FIPSTestBundleProvider provider = FIPSTestBundleProvider.get(FIPS1403BC2x.VERSION);
assertThat(provider, notNullValue());
assertThat(provider.getVersion(), is(FIPS1403BC2x.VERSION));
assertThat(provider.getBootClasspathFiles(), hasSize(3));
assertThat(provider.getBootClasspathFiles(), hasSize(4));
}
}

0 comments on commit aa80927

Please sign in to comment.