Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

When was TLS 1.2 support added to OpenSSL?

Tags:

openssl

tls1.2

Does OpenSSL 0.9.8x support TLS1.2? I looked at the changelog for OpenSSL but didn't find any information on this: https://www.openssl.org/news/changelog.html

like image 403
Reid Avatar asked Jan 09 '18 23:01

Reid


People also ask

When did TLS 1.2 become available?

TLS 1.2 was released in 2008, offering improved security, and was designed for both high performance and improved reliability.

Does OpenSSL implement TLS?

OpenSSL has implemented support for five TLSv1. 3 ciphersuites as follows: TLS13-AES-256-GCM-SHA384.

What version of TLS does OpenSSL 1.1 1 support?

OpenSSL 1.1. 1 includes support for TLS version 1.3 and discontinues support for SSLv2.

How do you check if TLS 1.2 is supported?

Click on: Start -> Control Panel -> Internet Options 2. Click on the Advanced tab 3. Scroll to the bottom and check the TLS version described in steps 3 and 4: 4. If Use SSL 2.0 is enabled, you must have TLS 1.2 enabled (checked) 5.


1 Answers

On the official changelog page you provided, under Changes between 1.0.0h and 1.0.1 [14 Mar 2012] you can see Initial TLS v1.2 support.

*) Add TLS v1.2 server support for client authentication. [Steve Henson]

*) Add TLS v1.2 client side support for client authentication. Keep cache of handshake records longer as we don't know the hash algorithm to use until after the certificate request message is received. [Steve Henson]

*) Initial TLS v1.2 client support. Add a default signature algorithms extension including all the algorithms we support. Parse new signature format in client key exchange. Relax some ECC signing restrictions for TLS v1.2 as indicated in RFC5246. [Steve Henson]

*) Add server support for TLS v1.2 signature algorithms extension. Switch to new signature format when needed using client digest preference. All server ciphersuites should now work correctly in TLS v1.2. No client support yet and no support for client certificates. [Steve Henson]

*) Initial TLS v1.2 support. Add new SHA256 digest to ssl code, switch to SHA256 for PRF when using TLS v1.2 and later. Add new SHA256 based ciphersuites. At present only RSA key exchange ciphersuites work with TLS v1.2. Add new option for TLS v1.2 replacing the old and obsolete SSL_OP_PKCS1_CHECK flags with SSL_OP_NO_TLSv1_2. New TLSv1.2 methods and version checking. [Steve Henson]

*) Initial TLSv1.1 support. Since TLSv1.1 is very similar to TLS v1.0 only a few changes are required [...]

TLS 1.2 support is from OpenSSL version 1.0.1.

OpenSSL 0.9.8x is lower than 1.0.1 so it does not support TLS 1.2

like image 195
Martin Avatar answered Oct 03 '22 01:10

Martin