Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Cipher List Setting # Problem can not connect some site. e.g. https://echo.websocket.org https://www.ssllabs.com/ssltest/analyze.html?d=echo.websocket.org Safari can respond 404 but HTTPSClient reset connection by peer # Reason default cipher list `"HIGH:!aNULL:!kRSA:!PSK:!SRP:!MD5:!RC4"` is strict so some server does not reach its requirement. # Fix Able to set cipherList from HTTPSClient it can pass to TCPSSL and then OpenSSL it does not break current program because it uses `cipherList: String? = nil` so exsist code runs exactly it was before. * Simple fix for now Just removed Cipher List Specification otherwise we find clean solution.
- Loading branch information