I read the documentation I have to do before asking a question! But in order to allow the ciphers listed, I need to disable NSExceptionRequireForwardSecrecy for this URL, from the docs ...
NSExceptionRequiresForwardSecrecy Boolean to override the requirement that a domain maintain direct secrecy using ciphers.
YES is the default and restricts ciphers to those shown in Behavior by default.
Setting the value to NO adds the following list of accepted ciphers:
- TLS_RSA_WITH_AES_256_GCM_SHA384
- TLS_RSA_WITH_AES_128_GCM_SHA256
- TLS_RSA_WITH_AES_256_CBC_SHA256
- TLS_RSA_WITH_AES_256_CBC_SHA
- TLS_RSA_WITH_AES_128_CBC_SHA256
- TLS_RSA_WITH_AES_128_CBC_SHA
Flexicoder Sep 30 '15 at 14:56 2015-09-30 14:56
source share