Is TLS_RSA_WITH_3DES_EDE_CBC_SHA equivalent to SSL_RSA_WITH_3DES_EDE_CBC_SHA

后端 未结 1 461
误落风尘
误落风尘 2020-12-19 09:54

I am working on configuring a Java client which its job is to make TLS connections to servers. I want to configure my client with these 3 ciphers:

TLS_RSA_WI         


        
相关标签:
1条回答
  • 2020-12-19 10:38

    Yes, they are the same. See Java Cryptography Architecture Standard Algorithm Name Documentation:

    Some JSSE cipher suite names were defined before TLSv1.0 was finalized, and were therefore given the SSL_ prefix. The names mentioned in the TLS RFCs prefixed with TLS_ are functionally equivalent to the JSSE cipher suites prefixed with SSL_.

    0 讨论(0)
提交回复
热议问题