Skip to content

Commit

Permalink
Add FIPS NSS support on p/z linux platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
taoliult committed Nov 13, 2023
1 parent 3dfae78 commit 4c0b0c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public final class RestrictedSecurity {

private static RestrictedSecurityProperties restricts;

private static final List<String> supportPlatforms = List.of("amd64");
private static final List<String> supportPlatforms = List.of("amd64", "ppc64le", "s390x");

static {
@SuppressWarnings("removal")
Expand Down
2 changes: 1 addition & 1 deletion src/java.base/share/conf/security/java.security
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ security.provider.tbd=Apple
#endif
security.provider.tbd=SunPKCS11

#ifdef linux-x86
#if defined(linux-x86) || defined(linux-ppc64le) || defined(linux-s390x)
#
# Java Restricted Security Mode
#
Expand Down

0 comments on commit 4c0b0c2

Please sign in to comment.