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 6da0f87 + fb766a0 commit 5562aa4Copy full SHA for 5562aa4
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