Hello guys,
I have received a notification from Apple stating that they gonna tighten the security rules in iOS 9:
1. The protocol Transport Security Layer (TLS) must be at least version 1.2.
2. Certificates must use at least an SHA256 fingerprint with either a 2048 bit or greater RSA key,
or a 256 bit or greater Elliptic-Curve (ECC) key.
3. Connection ciphers are limited to those that provide forward secrecy:
TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
I have a couple of applications running with https URLs and I want to make sure they won't fail on iOS 9.
The question is: does app engine satisfy these requirements ? Any documentation on this ?