We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b4642c8 + 8185f13 commit fb766a0Copy full SHA for fb766a0
TLS-Core/src/main/java/de/rub/nds/tlsattacker/core/workflow/BouncyCastleProviderChecker.java
@@ -16,7 +16,7 @@ public class BouncyCastleProviderChecker {
16
17
static boolean isLoaded() {
18
for (Provider p : Security.getProviders()) {
19
- if (p.getClass().equals(BouncyCastleProvider.class)) {
+ if (p.getClass().getName().equals(BouncyCastleProvider.class.getName())) {
20
return true;
21
}
22
0 commit comments