Benefits of TLS over SSL3 [closed]
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used b开发者_JAVA百科y programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this questionCan someone tell me what are the benefits of TLS over SSL3? Thanks.
TLS is a standard (defined in RFC). TLS 1.0 could be considered SSL 3.1. Now there exists TLS 1.2. TLS 1.0 brought only minor (but breaking) changes. You will find the list of additions in the RFC for TLS 1.1 (section 1.1) and TLS 1.2 (section 1.2).
Also there were several additions defined in separate RFCs, e.g. AES support, Camellia support, compression, etc. All of these features are not available in SSL, of course.
I think Server Name Indication Option is the most useful when comparing TLS over SSL which could make you install more than one certificate in one IP address, which means VirtualHost
精彩评论