You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This error occurs when using FIPS enabled BouncyCastle libraries.
java.lang.NoClassDefFoundError: org/bouncycastle/jce/provider/BouncyCastleProvider
at net.lightbody.bmp.mitm.tools.DefaultSecurityProviderTool.<init>(DefaultSecurityProviderTool.java:34)
at net.lightbody.bmp.mitm.util.TrustUtil.<clinit>(TrustUtil.java:56)
at net.lightbody.bmp.mitm.TrustSource.javaTrustSource(TrustSource.java:103)
at net.lightbody.bmp.mitm.TrustSource.<clinit>(TrustSource.java:39)
at net.lightbody.bmp.BrowserMobProxyServer.<init>(BrowserMobProxyServer.java:225)
There is a hardcoded reference to the non-FIPS BouncyCastleProvider here. This should be using java.security configuration for the JVM, as described in the BouncyCastle doc here.
The text was updated successfully, but these errors were encountered:
This error occurs when using FIPS enabled BouncyCastle libraries.
Snippet from pom.xml:
There is a hardcoded reference to the non-FIPS BouncyCastleProvider here. This should be using java.security configuration for the JVM, as described in the BouncyCastle doc here.
The text was updated successfully, but these errors were encountered: