Skip to content

Commit

Permalink
added commentary of FIPS IG A.5 and GCM compliance.
Browse files Browse the repository at this point in the history
  • Loading branch information
dghgit committed Oct 5, 2019
1 parent b4bf563 commit 9948457
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@
abstract class FipsUtils
{
private static final boolean provAllowRSAKeyExchange = PropertyUtils.getBooleanSystemProperty("org.bouncycastle.jsse.fips.allowRSAKeyExchange", true);
private static final boolean canSupportGCM = true;
// This can only be set to true if the underlying provider is able to assert it is compliant with FIPS IG A.5
// and a mechanism has been integrated into this API accordingly to ensure that is the case.
private static final boolean canSupportGCM = 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 9948457

Please sign in to comment.