My key is RSA format, and certificate Signature Algorithm is sha256WithRSAEncryption, with bouncycastle fips enabled, I saw only 4 TLS_ECDHE_RSA_xxx ciphers supported for tls1.2:
TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
But according to https://downloads.bouncycastle.org/fips-java/BC-FJA-(D)TLSUserGuide-1.0.0.pdf, those TLS_RSA_WITH_xxx on the Appendix B supported list should also be available for my case, such as TLS_RSA_WITH_AES_256_CBC_SHA256. Any idea why I didn't see it? Anyway to turn it on? I am using Java implementation.