Skip to content

Commit

Permalink
BCJSSE: org.bouncycastle.jsse.fips.allowRSAKeyExchange defaults to false
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdettman committed Feb 5, 2024
1 parent 403b4b5 commit 294b42c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ abstract class FipsUtils
private static final boolean provAllowGCMCiphersIn12 = false;

private static final boolean provAllowRSAKeyExchange = PropertyUtils
.getBooleanSystemProperty("org.bouncycastle.jsse.fips.allowRSAKeyExchange", true);
.getBooleanSystemProperty("org.bouncycastle.jsse.fips.allowRSAKeyExchange", false);

private static final Set<String> FIPS_SUPPORTED_CIPHERSUITES = createFipsSupportedCipherSuites();
private static final Set<String> FIPS_SUPPORTED_PROTOCOLS = createFipsSupportedProtocols();
Expand Down

0 comments on commit 294b42c

Please sign in to comment.