When I am using `slurp' to get the HTML page from "https://clojuredocs.org/clojure.core/slurp", I always get the Exception like:
SSLHandshakeException Received fatal alert: handshake_failure sun.security.ssl.Alerts.getSSLException (Alerts.java:192)
But there is no problem when I use the 'wget' download the same page. After doing a comparison of the pcaps, I find the problem might be caused by the cipher suites chosen by the client. When I am using 'slurp', there is 22 cipher suites selected, while the wget selects 66 cipher suites (I can't list all the cipher suites here).
So my question: is there a way to configure the default cipher suites of the JVM to make slurp work with "https://clojuredocs.org"?