Will Sargent

Results 199 comments of Will Sargent

Not all of the javadocs use that URL, but most of the ones that you can resolve with maven will. Some of the exceptions are listed here from the Play...

@aalmiray Is there a way to make the build compilable even if the bintray settings aren't there? Right now if I don't have bintray settings ~/.gradle/gradle.properties ``` bintrayUsername=tersesystems # https://bintray.com/profile/edit...

> I don't have any free cycles available right now. same tbh

This is now a possibliity with Java 11 having support for Unicode 11.

I'm in favor of deprecating or simply removing. You can't have HTTPS without hostname verification -- it's literally TLS plus "how to handle a URL" plus "server identity check": https://tools.ietf.org/html/rfc2818#section-3.1...

https://github.com/tersesystems/securitybuilder :-)

SSL config only does configuration. You can use https://github.com/tersesystems/securitybuilder to generate the keystore.

@Sebruck Certificate and keystore generation is not a part of JSSE or TLS. That would still be a distinct project working with [CertPath](https://docs.oracle.com/javase/8/docs/technotes/guides/security/certpath/CertPathProgGuide.html) and [JCA](https://docs.oracle.com/javase/8/docs/technotes/guides/security/crypto/CryptoSpec.html) APIs.

In the past I've used CFSSL and [sample-cfssl-ca](https://github.com/drewfarris/sample-cfssl-ca) to do this -- see https://tersesystems.com/blog/2018/07/28/building-java-keystores/ for more details.

I don't think acceptAnyCertificate ever made any promises about accepting expired certificates -- only that it would accept certificates that would fail an identity check.