- Enable 128-bit RSA+AES+SHA256 suites
- Disable all static DHE suites because:
* There's no way to negotiate DH key sizes.
* It's barely in use and when it is, it can fall back to RSA
* We now have broader RSA/AES support with stronger SHA-HMAC
This adds the following suites for web compatibility despite the
deprecated RSA key exchange that makes little sense with a
very strong HMAC or GCM:
TLS_RSA_WITH_AES_256_GCM_SHA384
TLS_RSA_WITH_AES_256_CBC_SHA256
TLS_RSA_WITH_AES_128_GCM_SHA256
TLS_RSA_WITH_AES_128_CBC_SHA256
Only the 256-bit ones are enabled by default.