Change 0cdd9de6decbb7c07c83640c367b4f34473970ff by norman_maurer (2 files):
Update to JDK 12 EA16 when running CI jobs against JDK 12. (#8421)
Motivation:
A new EA release was done, we should always run against the latest.
Modifications:
Update to EA 16.
Result:
CI runs with latest EA release for JDK12.
Change 9e762e8816fef48e3cfba563c55f8c9cd6bce010 by norman_maurer (1 file):
Correctly detect if KeyManagerFactory is supported by OpenSSL even when sun.security.x509.* can not be accessed and bouncycastle is not on the classpath. (#8415)
Motivation:
OpenSsl used SelfSignedCertificate in its static init block to detect if KeyManagerFactory is supported. Unfortunally this only works when either sun.security.x509.* can be accessed or bouncycastle is on the classpath. We should not depend on either of it.