Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,11 @@
public class ConscryptOpenJdkSuite {
@BeforeClass
public static void setupStatic() {
// Java 26 introduced additional certificate checking in SunX509KeyManagerImpl
// that rejects test certificates lacking proper Key Usage extensions. Disable
// it here so that certificate quality issues are not masked as TLS failures.
// TODO(#1486) Fix test certificate generation in TestKeyStore and remove this.
System.setProperty("jdk.tls.SunX509KeyManager.certChecking", "false");
installConscryptAsDefaultProvider();
}
}