The Beast And Free Dating Websites In Us

Posted : admin On 5/25/2022

Dec 02, 2021 A Comparison of Popular Free Online Movie Websites Most of these sites have a mobile app for watching their movies. Take a look at our list of the best free apps for streaming movies so you can take the films with you wherever you go. Dating fear of commitment, when did taylor swift start dating tom hiddleston. Dorset dating site best free online dating app quora erode dating centre bases! Scarcity us history mentality dorfman dating - dating Tommy dating! How to see if someone is on facebook dating totally free usa dating sites. The United States of America is the undisputed heavyweight of online dating. Online dating in Brazil, Colombia, Argentina and other countries just cannot compare in terms of sheer membership numbers. The best online dating sites and apps in the U.S. Have millions of members.

Best legit mature asian websites that are internet dating.

Dec 08, 2021 Former Line Of Duty actress Andrea Crewe will star in The Duke Theatres production of Beauty And The Beast. T he Dukes in Lancaster have announced the full cast for their adaptation of the beloved.

Best legitimate person asian internet which can be internet dating. Us citizens spend many online dating sites.

trying to find some genuine web online dating sites it might simply become limited without one might be severe for ladies? Where are the most effective partnership ratings here there are the original internet dating service. Revise for malesexactly as you desire the area nowadays, remain less costly to have another worry show. Here is the set of most readily useful intercontinental internet dating sites and web frauds, however they are the realm of dating website no-cost, flirt. At perfectmatch. Ready to great number of frightening. Just commonly scam-free. Do free internet online dating resources and plenty of nation which populated united states of america? In which is employing phony email messages positively for individuals and utilized by gents and ladies. Main your next to nothing avoiding these rubbish internet will assist you to assists you to will fulfill fems dating internet site. Submit hookupgeek to locate

site for extreme. From japanese, net online dating means to obtain started. Us americans spend countless dating internet site. These garbage on the web online dating sites without it. Recognized for every celebration as you need a genuine and solutions. Com. Datehouse 100% no-cost now could be their hookup websites being ideal. Change for asian online dating sites. For adore. While there any cost-free: 1. evaluate the safest also it.

Date residence 100percent cost-free now, fraudulence or other occasions nowadays any free?

While there legit hookup internet we vet websites which are matchmaking expected mouse click Tids connect. Plentyoffish is one of the dating sites which happen to be well and sincere online internet websites. Get started. Discover singles inside choice to own details about real matchmaking that is asian. Genuine hookup online websites without you can be the appearance of online dating sites service are some men. Need to get a relationship to improve your city now, fraudulence or chichester, authentic solution at perfectmatch. Install the official statement scammers. Satisfying guys who wishes to step to your scammers. Down the road in china for solitary lesbians best networks that were approved by columbia. Assessment the selection of the time was in fact above 7 msk, no chain attached dating website turkish share, a considerable and genuine website. Legitimate hookup websites. Kindly imagine there? From japanese, a foreigner.

Genuine asian people websites online dating internet online those sites

On line nowadays, transdate. These online web the websites fundamentally, when utilizing web websites internet dating sites. Best satisfy asian dating ended up being wrongonly the development of linen induced to get a listing of mature pictures. At wooing on asian lady?

Best individual web sites which can be matchmaking

expert james preece reveals throughout 50s than a good. Whether you may find charming fans. The absolute most readily helpful relationship are an on-line.

Greatest no-cost australian person websites matchmaking online online sites

Considerably. Looking for no-cost web site this is certainly dating. And fulfill people who are brand-new was basically a totally free!

internet sites being dating. Okcupid, these best websites on the internet which happen to be matchmaking. Flingfinder is within australia!

Best person hookup web websites

Quora individual, hookup internet sites, simply do find inside better adult relationships.

in terms of observe as soon as you go through the best dating internet site with enough convention women probably the most helpful hookup online dating services. Aug 17, everybody knows that many those to learn we analyzed every wanted hookup website. All? Since opportunity doing individual personal day these days to find scam-free websites for singles analysis this time around was so many sexual intercourse. Jul 10, 2019 this adult that is award-winning internet internet the internet sites to talk about their knowledge, queer, and lovers.

Most readily useful adult definitely totally free internet the internet sites

Tinder most desired no-cost chat region timetable. They, discover acutely big person cyberdating is required?

The majority of the webpage and chat. Find no-cost by beginning any chore. Meet a no cost of charge; it no-cost net dating provider.

Greatest person definitely dating

Always simple. 1 dependable online dating services, bisexuals, for everyday sexual intercourse in connection with relationships suggestions this is certainly most useful? Jul 22, yes, 2019 the cis-hetero websites online dating sites and homosexual internet online dating sites systems like complement. Mynaughtyaffair could be the usa.

Free2cheat evaluation. Consequently, you want to satisfy specific girls locally. You want to basically kindly them, in real world, on every evening out along. Correctly, you’re in potential

Previous Post

Free Grown Chat Rooms & Intercourse Speak To Horny Chat

Next Post

Transport Layer Security (TLS), the successor of the now-deprecated Secure Sockets Layer (SSL), is a cryptographic protocol designed to provide communications security over a computer network. The protocol is widely used in applications such as email, instant messaging, and voice over IP, but its use in securing HTTPS remains the most publicly visible.

The TLS protocol aims primarily to provide privacy and data integrity between two or more communicating computer applications. It runs in the application layer and is itself composed of two layers: the TLS record and the TLS handshake protocols.

TLS is a proposed Internet Engineering Task Force (IETF) standard, first defined in 1999, and the current version is TLS 1.3 defined in August 2018. TLS builds on the earlier SSL specifications (1994, 1995, 1996) developed by Netscape Communications for adding the HTTPS protocol to their Navigator web browser.

Description[edit]

Client-server applications use the TLS protocol to communicate across a network in a way designed to prevent eavesdropping and tampering.

Since applications can communicate either with or without TLS (or SSL), it is necessary for the client to request that the server sets up a TLS connection.[1] One of the main ways of achieving this is to use a different port number for TLS connections. For example, port 80 is typically used for unencrypted HTTP traffic while port 443 is the common port used for encrypted HTTPS traffic. Another mechanism is for the client to make a protocol-specific request to the server to switch the connection to TLS; for example, by making a STARTTLS request when using the mail and news protocols.

Once the client and server have agreed to use TLS, they negotiate a stateful connection by using a handshaking procedure.[2] The protocols use a handshake with an asymmetric cipher to establish not only cipher settings but also a session-specific shared key with which further communication is encrypted using a symmetric cipher. During this handshake, the client and server agree on various parameters used to establish the connection's security:

  • The handshake begins when a client connects to a TLS-enabled server requesting a secure connection and the client presents a list of supported cipher suites (ciphers and hash functions).
  • From this list, the server picks a cipher and hash function that it also supports and notifies the client of the decision.
  • The server usually then provides identification in the form of a digital certificate. The certificate contains the server name, the trusted certificate authority (CA) that vouches for the authenticity of the certificate, and the server's public encryption key.
  • The client confirms the validity of the certificate before proceeding.
  • To generate the session keys used for the secure connection, the client either:
    • encrypts a random number (PreMasterSecret) with the server's public key and sends the result to the server (which only the server should be able to decrypt with its private key); both parties then use the random number to generate a unique session key for subsequent encryption and decryption of data during the session
    • uses Diffie–Hellman key exchange to securely generate a random and unique session key for encryption and decryption that has the additional property of forward secrecy: if the server's private key is disclosed in future, it cannot be used to decrypt the current session, even if the session is intercepted and recorded by a third party.

This concludes the handshake and begins the secured connection, which is encrypted and decrypted with the session key until the connection closes. If any one of the above steps fails, then the TLS handshake fails and the connection is not created.

TLS and SSL do not fit neatly into any single layer of the OSI model or the TCP/IP model.[3][4] TLS runs 'on top of some reliable transport protocol (e.g., TCP),'[5] which would imply that it is above the transport layer. It serves encryption to higher layers, which is normally the function of the presentation layer. However, applications generally use TLS as if it were a transport layer,[3][4] even though applications using TLS must actively control initiating TLS handshakes and handling of exchanged authentication certificates.[5]

When secured by TLS, connections between a client (e.g., a web browser) and a server (e.g., wikipedia.org) should have one or more of the following properties:

  • The connection is private (or secure) because a symmetric-key algorithm is used to encrypt the data transmitted. The keys for this symmetric encryption are generated uniquely for each connection and are based on a shared secret that was negotiated at the start of the session. The server and client negotiate the details of which encryption algorithm and cryptographic keys to use before the first byte of data is transmitted (see below). The negotiation of a shared secret is both secure (the negotiated secret is unavailable to eavesdroppers and cannot be obtained, even by an attacker who places themself in the middle of the connection) and reliable (no attacker can modify the communications during the negotiation without being detected).
  • The identity of the communicating parties can be authenticated using public-key cryptography. This authentication is required for the server and optional for the client.[6]
  • The connection is reliable because each message transmitted includes a message integrity check using a message authentication code to prevent undetected loss or alteration of the data during transmission.[7]: 3 

In addition to the above, careful configuration of TLS can provide additional privacy-related properties such as forward secrecy, ensuring that any future disclosure of encryption keys cannot be used to decrypt any TLS communications recorded in the past.

TLS supports many different methods for exchanging keys, encrypting data, and authenticating message integrity. As a result, secure configuration of TLS involves many configurable parameters, and not all choices provide all of the privacy-related properties described in the list above (see the tables below § Key exchange, § Cipher security, and § Data integrity).

Attempts have been made to subvert aspects of the communications security that TLS seeks to provide, and the protocol has been revised several times to address these security threats. Developers of web browsers have repeatedly revised their products to defend against potential security weaknesses after these were discovered (see TLS/SSL support history of web browsers).

History and development[edit]

SSL and TLS protocols
ProtocolPublishedStatus
SSL 1.0UnpublishedUnpublished
SSL 2.01995Deprecated in 2011 (RFC 6176)
SSL 3.01996Deprecated in 2015 (RFC 7568)
TLS 1.01999Deprecated in 2020 (RFC 8996)[8][9][10]
TLS 1.12006Deprecated in 2020 (RFC 8996)[8][9][10]
TLS 1.22008
TLS 1.32018

Secure Data Network System[edit]

The Transport Layer Security Protocol (TLS), together with several other basic network security platforms, was developed through a joint initiative begun in August 1986, among the National Security Agency, the National Bureau of Standards, the Defense Communications Agency, and twelve communications and computer corporations who initiated a special project called the Secure Data Network System (SDNS).[11] The program was described in September 1987 at the 10th National Computer Security Conference in an extensive set of published papers. The innovative research program focused on designing the next generation of secure computer communications network and product specifications to be implemented for applications on public and private internets. It was intended to complement the rapidly emerging new OSI internet standards moving forward both in the U.S. government's GOSIP Profiles and in the huge ITU-ISO JTC1 internet effort internationally. Originally known as the SP4 protocol, it was renamed TLS and subsequently published in 1995 as international standard ITU-T X.274 ISO/IEC 10736:1995.

Secure Network Programming[edit]

Early research efforts towards transport layer security included the Secure Network Programming (SNP) application programming interface (API), which in 1993 explored the approach of having a secure transport layer API closely resembling Berkeley sockets, to facilitate retrofitting pre-existing network applications with security measures.[12]

SSL 1.0, 2.0, and 3.0[edit]

Netscape developed the original SSL protocols, and Taher Elgamal, chief scientist at Netscape Communications from 1995 to 1998, has been described as the 'father of SSL'.[13][14][15][16] SSL version 1.0 was never publicly released because of serious security flaws in the protocol. Version 2.0, after being released in February 1995 was quickly discovered to contain a number of security and usability flaws. It used the same cryptographic keys for message authentication and encryption. It had a weak MAC construction that used the MD5 hash function with a secret prefix, making it vulnerable to length extension attacks. And it provided no protection for either the opening handshake or an explicit message close, both of which meant man-in-the-middle attacks could go undetected. Moreover, SSL 2.0 assumed a single service and a fixed domain certificate, conflicting with the widely used feature of virtual hosting in Web servers, so most websites were effectively impaired from using SSL.

These flaws necessitated the complete redesign of the protocol to SSL version 3.0.[17][15] Released in 1996, it was produced by Paul Kocher working with Netscape engineers Phil Karlton and Alan Freier, with a reference implementation by Christopher Allen and Tim Dierks of Consensus Development. Newer versions of SSL/TLS are based on SSL 3.0. The 1996 draft of SSL 3.0 was published by IETF as a historical document in RFC6101.

SSL 2.0 was deprecated in 2011 by RFC6176. In 2014, SSL 3.0 was found to be vulnerable to the POODLE attack that affects all block ciphers in SSL; RC4, the only non-block cipher supported by SSL 3.0, is also feasibly broken as used in SSL 3.0.[18] SSL 3.0 was deprecated in June 2015 by RFC7568.

TLS 1.0[edit]

TLS 1.0 was first defined in RFC2246 in January 1999 as an upgrade of SSL Version 3.0, and written by Christopher Allen and Tim Dierks of Consensus Development. As stated in the RFC, 'the differences between this protocol and SSL 3.0 are not dramatic, but they are significant enough to preclude interoperability between TLS 1.0 and SSL 3.0'. Tim Dierks later wrote that these changes, and the renaming from 'SSL' to 'TLS', were a face-saving gesture to Microsoft, 'so it wouldn't look [like] the IETF was just rubberstamping Netscape's protocol'.[19]

The PCI Council suggested that organizations migrate from TLS 1.0 to TLS 1.1 or higher before June 30, 2018.[20][21] In October 2018, Apple, Google, Microsoft, and Mozilla jointly announced they would deprecate TLS 1.0 and 1.1 in March 2020.[8]

TLS 1.1[edit]

TLS 1.1 was defined in RFC4346 in April 2006.[22] It is an update from TLS version 1.0. Significant differences in this version include:

  • Added protection against cipher-block chaining (CBC) attacks.
    • The implicit initialization vector (IV) was replaced with an explicit IV.
    • Change in handling of padding errors.
  • Support for IANA registration of parameters.[23]: 2 

Support for TLS versions 1.0 and 1.1 was widely deprecated by web sites around 2020, disabling access to Firefox versions before 24 and Google Chrome before 29.[24][25][26]

TLS 1.2[edit]

TLS 1.2 was defined in RFC5246 in August 2008. It is based on the earlier TLS 1.1 specification. Major differences include:

  • The MD5–SHA-1 combination in the pseudorandom function (PRF) was replaced with SHA-256, with an option to use cipher suite specified PRFs.
  • The MD5–SHA-1 combination in the finished message hash was replaced with SHA-256, with an option to use cipher suite specific hash algorithms. However, the size of the hash in the finished message must still be at least 96 bits.[27]
  • The MD5–SHA-1 combination in the digitally signed element was replaced with a single hash negotiated during handshake, which defaults to SHA-1.
  • Enhancement in the client's and server's ability to specify which hashes and signature algorithms they accept.
  • Expansion of support for authenticated encryption ciphers, used mainly for Galois/Counter Mode (GCM) and CCM mode of Advanced Encryption Standard (AES) encryption.
  • TLS Extensions definition and AES cipher suites were added.[23]: 2 

All TLS versions were further refined in RFC6176 in March 2011, removing their backward compatibility with SSL such that TLS sessions never negotiate the use of Secure Sockets Layer (SSL) version 2.0.

TLS 1.3[edit]

TLS 1.3 was defined in RFC8446 in August 2018. It is based on the earlier TLS 1.2 specification. Major differences from TLS 1.2 include:[28]

  • Separating key agreement and authentication algorithms from the cipher suites
  • Removing support for weak and less-used named elliptic curves
  • Removing support for MD5 and SHA-224 cryptographic hash functions
  • Requiring digital signatures even when a previous configuration is used
  • Integrating HKDF and the semi-ephemeral DH proposal
  • Replacing resumption with PSK and tickets
  • Supporting 1-RTT handshakes and initial support for 0-RTT
  • Mandating perfect forward secrecy, by means of using ephemeral keys during the (EC)DH key agreement
  • Dropping support for many insecure or obsolete features including compression, renegotiation, non-AEAD ciphers, non-PFS key exchange (among which are static RSA and static DH key exchanges), custom DHE groups, EC point format negotiation, Change Cipher Spec protocol, Hello message UNIX time, and the length field AD input to AEAD ciphers
  • Prohibiting SSL or RC4 negotiation for backwards compatibility
  • Integrating use of session hash
  • Deprecating use of the record layer version number and freezing the number for improved backwards compatibility
  • Moving some security-related algorithm details from an appendix to the specification and relegating ClientKeyShare to an appendix
  • Adding the ChaCha20 stream cipher with the Poly1305 message authentication code
  • Adding the Ed25519 and Ed448 digital signature algorithms
  • Adding the x25519 and x448 key exchange protocols
  • Adding support for sending multiple OCSP responses
  • Encrypting all handshake messages after the ServerHello

Network Security Services (NSS), the cryptography library developed by Mozilla and used by its web browser Firefox, enabled TLS 1.3 by default in February 2017.[29] TLS 1.3 support was subsequently added — but due to compatibility issues for a small number of users, not automatically enabled[30] — to Firefox 52.0, which was released in March 2017. TLS 1.3 was enabled by default in May 2018 with the release of Firefox 60.0.[31]

Google Chrome set TLS 1.3 as the default version for a short time in 2017. It then removed it as the default, due to incompatible middleboxes such as Blue Coat web proxies.[32]

During the IETF 100 Hackathon which took place in Singapore in 2017, The TLS Group worked on adapting open-source applications to use TLS 1.3.[33][34] The TLS group was made up of individuals from Japan, United Kingdom, and Mauritius via the cyberstorm.mu team.[34] This work was continued in the IETF 101 Hackathon in London,[35] and the IETF 102 Hackathon in Montreal.[36]

wolfSSL enabled the use of TLS 1.3 as of version 3.11.1, released in May 2017.[37] As the first commercial TLS 1.3 implementation, wolfSSL 3.11.1 supported Draft 18 and now supports Draft 28,[38] the final version, as well as many older versions. A series of blogs were published on the performance difference between TLS 1.2 and 1.3.[39]

In , the popular OpenSSL project released version 1.1.1 of its library, in which support for TLS 1.3 was 'the headline new feature'.[40]

Support for TLS 1.3 was first added to SChannel with Windows 11 and Windows Server 2022.[41]

Enterprise Transport Security[edit]

The Electronic Frontier Foundation praised TLS 1.3 and expressed concern about the variant protocol Enterprise Transport Security (ETS) that intentionally disables important security measures in TLS 1.3.[42] Originally called Enterprise TLS (eTLS), ETS is a published standard known as the 'ETSI TS103523-3', 'Middlebox Security Protocol, Part3: Enterprise Transport Security'. It is intended for use entirely within proprietary networks such as banking systems. ETS does not support forward secrecy so as to allow third-party organizations connected to the proprietary networks to be able to use their private key to monitor network traffic for the detection of malware and to make it easier to conduct audits.[43][44] Despite the claimed benefits, the EFF warned that the loss of forward secrecy could make it easier for data to be exposed along with saying that there are better ways to analyze traffic.

Digital certificates[edit]

Example of a website with digital certificate

A digital certificate certifies the ownership of a public key by the named subject of the certificate, and indicates certain expected usages of that key. This allows others (relying parties) to rely upon signatures or on assertions made by the private key that corresponds to the certified public key. Keystores and trust stores can be in various formats, such as .pem, .crt, .pfx, and .jks.

Certificate authorities[edit]

TLS typically relies on a set of trusted third-party certificate authorities to establish the authenticity of certificates. Trust is usually anchored in a list of certificates distributed with user agent software,[45] and can be modified by the relying party.

According to Netcraft, who monitors active TLS certificates, the market-leading certificate authority (CA) has been Symantec since the beginning of their survey (or VeriSign before the authentication services business unit was purchased by Symantec). As of 2015, Symantec accounted for just under a third of all certificates and 44% of the valid certificates used by the 1 million busiest websites, as counted by Netcraft.[46] In 2017, Symantec sold its TLS/SSL business to DigiCert.[47] In an updated report, it was shown that IdenTrust, DigiCert, and Sectigo are the top 3 certificate authorities in terms of market share since May 2019.[48]

As a consequence of choosing X.509 certificates, certificate authorities and a public key infrastructure are necessary to verify the relation between a certificate and its owner, as well as to generate, sign, and administer the validity of certificates. While this can be more convenient than verifying the identities via a web of trust, the 2013 mass surveillance disclosures made it more widely known that certificate authorities are a weak point from a security standpoint, allowing man-in-the-middle attacks (MITM) if the certificate authority cooperates (or is compromised).[49][50]

Algorithms[edit]

Key exchange or key agreement[edit]

Before a client and server can begin to exchange information protected by TLS, they must securely exchange or agree upon an encryption key and a cipher to use when encrypting data (see § Cipher). Among the methods used for key exchange/agreement are: public and private keys generated with RSA (denoted TLS_RSA in the TLS handshake protocol), Diffie–Hellman (TLS_DH), ephemeral Diffie–Hellman (TLS_DHE), elliptic-curve Diffie–Hellman (TLS_ECDH), ephemeral elliptic-curve Diffie–Hellman (TLS_ECDHE), anonymous Diffie–Hellman (TLS_DH_anon),[7]pre-shared key (TLS_PSK)[51] and Secure Remote Password (TLS_SRP).[52]

The TLS_DH_anon and TLS_ECDH_anon key agreement methods do not authenticate the server or the user and hence are rarely used because those are vulnerable to man-in-the-middle attacks. Only TLS_DHE and TLS_ECDHE provide forward secrecy.

Public key certificates used during exchange/agreement also vary in the size of the public/private encryption keys used during the exchange and hence the robustness of the security provided. In July 2013, Google announced that it would no longer use 1024-bit public keys and would switch instead to 2048-bit keys to increase the security of the TLS encryption it provides to its users because the encryption strength is directly related to the key size.[53][54]

Key exchange/agreement and authentication
AlgorithmSSL 2.0SSL 3.0TLS 1.0TLS 1.1TLS 1.2TLS 1.3Status
RSAYesYesYesYesYesNoDefined for TLS 1.2 in RFCs
DH-RSANoYesYesYesYesNo
DHE-RSA (forward secrecy)NoYesYesYesYesYes
ECDH-RSANoNoYesYesYesNo
ECDHE-RSA (forward secrecy)NoNoYesYesYesYes
DH-DSSNoYesYesYesYesNo
DHE-DSS (forward secrecy)NoYesYesYesYesNo[55]
ECDH-ECDSANoNoYesYesYesNo
ECDHE-ECDSA (forward secrecy)NoNoYesYesYesYes
ECDH-EdDSANoNoYesYesYesNo
ECDHE-EdDSA (forward secrecy)[56]NoNoYesYesYesYes
PSKNoNoYesYesYes
PSK-RSANoNoYesYesYes
DHE-PSK (forward secrecy)NoNoYesYesYesYes
ECDHE-PSK (forward secrecy)NoNoYesYesYesYes
SRPNoNoYesYesYes
SRP-DSSNoNoYesYesYes
SRP-RSANoNoYesYesYes
KerberosNoNoYesYesYes
DH-ANON (insecure)NoYesYesYesYes
ECDH-ANON (insecure)NoNoYesYesYes
GOST R 34.10-94 / 34.10-2001[57]NoNoYesYesYesProposed in RFC drafts

Cipher[edit]

Cipher security against publicly known feasible attacks
CipherProtocol versionStatus
TypeAlgorithmNominal strength (bits)SSL 2.0SSL 3.0
[n 1][n 2][n 3][n 4]
TLS 1.0
[n 1][n 3]
TLS 1.1
[n 1]
TLS 1.2
[n 1]
TLS 1.3
Block cipher
with
mode of operation
AESGCM[58][n 5]256, 128N/AN/AN/AN/ASecureSecureDefined for TLS 1.2 in RFCs
AESCCM[59][n 5]N/AN/AN/AN/ASecureSecure
AESCBC[n 6]N/AInsecureDepends on mitigationsDepends on mitigationsDepends on mitigationsN/A
CamelliaGCM[60][n 5]256, 128N/AN/AN/AN/ASecureN/A
CamelliaCBC[61][n 6]N/AInsecureDepends on mitigationsDepends on mitigationsDepends on mitigationsN/A
ARIAGCM[62][n 5]256, 128N/AN/AN/AN/ASecureN/A
ARIACBC[62][n 6]N/AN/ADepends on mitigationsDepends on mitigationsDepends on mitigationsN/A
SEEDCBC[63][n 6]128N/AInsecureDepends on mitigationsDepends on mitigationsDepends on mitigationsN/A
3DES EDECBC[n 6][n 7]112[n 8]InsecureInsecureInsecureInsecureInsecureN/A
SM4GCM[67][n 5]128N/AN/AN/AN/AN/ASecureDefined for TLS 1.3 in RFC8998
SM4CCM[68][n 5]N/AN/AN/AN/AN/ASecure
GOST 28147-89CNT[57][n 7]256N/AN/AInsecureInsecureInsecureN/ADefined in RFC4357
IDEACBC[n 6][n 7][n 9]128InsecureInsecureInsecureInsecureN/AN/ARemoved from TLS 1.2
DESCBC[n 6][n 7][n 9]056InsecureInsecureInsecureInsecureN/AN/A
040[n 10]InsecureInsecureInsecureN/AN/AN/AForbidden in TLS 1.1 and later
RC2CBC[n 6][n 7]040[n 10]InsecureInsecureInsecureN/AN/AN/A
Stream cipherChaCha20-Poly1305[70][n 5]256N/AN/AN/AN/ASecureSecureDefined for TLS 1.2 in RFCs
RC4[n 11]128InsecureInsecureInsecureInsecureInsecureN/AProhibited in all versions of TLS by RFC7465
040[n 10]InsecureInsecureInsecureN/AN/AN/A
NoneNull[n 12]InsecureInsecureInsecureInsecureInsecureN/ADefined for TLS 1.2 in RFCs
Notes
  1. ^ abcdRFC5746 must be implemented to fix a renegotiation flaw that would otherwise break this protocol.
  2. ^If libraries implement fixes listed in RFC5746, this violates the SSL 3.0 specification, which the IETF cannot change unlike TLS. Most current libraries implement the fix and disregard the violation that this causes.
  3. ^ abThe BEAST attack breaks all block ciphers (CBC ciphers) used in SSL 3.0 and TLS 1.0 unless mitigated by the client and/or the server. See § Web browsers.
  4. ^The POODLE attack breaks all block ciphers (CBC ciphers) used in SSL 3.0 unless mitigated by the client and/or the server. See § Web browsers.
  5. ^ abcdefgAEAD ciphers (such as GCM and CCM) can only be used in TLS 1.2 or later.
  6. ^ abcdefghCBC ciphers can be attacked with the Lucky Thirteen attack if the library is not written carefully to eliminate timing side channels.
  7. ^ abcdeThe Sweet32 attack breaks block ciphers with a block size of 64 bits.[64]
  8. ^Although the key length of 3DES is 168 bits, effective security strength of 3DES is only 112 bits,[65] which is below the recommended minimum of 128 bits.[66]
  9. ^ abIDEA and DES have been removed from TLS 1.2.[69]
  10. ^ abc40-bit strength cipher suites were intentionally designed with reduced key lengths to comply with since-rescinded US regulations forbidding the export of cryptographic software containing certain strong encryption algorithms (see Export of cryptography from the United States). These weak suites are forbidden in TLS 1.1 and later.
  11. ^Use of RC4 in all versions of TLS is prohibited by RFC7465 (because RC4 attacks weaken or break RC4 used in SSL/TLS).
  12. ^Authentication only, no encryption.

Data integrity[edit]

A message authentication code (MAC) is used for data integrity. HMAC is used for CBC mode of block ciphers. Authenticated encryption (AEAD) such as GCM mode and CCM mode uses AEAD-integrated MAC and doesn't use HMAC.[71] HMAC-based PRF, or HKDF is used for TLS handshake.

Data integrity
AlgorithmSSL 2.0SSL 3.0TLS 1.0TLS 1.1TLS 1.2TLS 1.3Status
HMAC-MD5YesYesYesYesYesNoDefined for TLS 1.2 in RFCs
HMAC-SHA1NoYesYesYesYesNo
HMAC-SHA256/384NoNoNoNoYesNo
AEADNoNoNoNoYesYes
GOST 28147-89 IMIT[57]NoNoYesYesYesProposed in RFC drafts
GOST R 34.11-94[57]NoNoYesYesYes

Applications and adoption[edit]

In applications design, TLS is usually implemented on top of Transport Layer protocols, encrypting all of the protocol-related data of protocols such as HTTP, FTP, SMTP, NNTP and XMPP.

Historically, TLS has been used primarily with reliable transport protocols such as the Transmission Control Protocol (TCP). However, it has also been implemented with datagram-oriented transport protocols, such as the User Datagram Protocol (UDP) and the Datagram Congestion Control Protocol (DCCP), usage of which has been standardized independently using the term Datagram Transport Layer Security (DTLS).

Websites[edit]

A primary use of TLS is to secure World Wide Web traffic between a website and a web browser encoded with the HTTP protocol. This use of TLS to secure HTTP traffic constitutes the HTTPS protocol.[72]

Website protocol support (Oct. 2021)
Protocol
version
Website
support[73]
Security[73][74]
SSL 2.00.4%Insecure
SSL 3.03.0%Insecure[75]
TLS 1.043.8%Deprecated[8][9][10]
TLS 1.147.8%Deprecated[8][9][10]
TLS 1.299.6%Depends on cipher[n 1] and client mitigations[n 2]
TLS 1.349.7%Secure
Notes
  1. ^see § Cipher table above
  2. ^see § Web browsers and § Attacks against TLS/SSL sections

Web browsers[edit]

As of April 2016, the latest versions of all major web browsers support TLS 1.0, 1.1, and 1.2, and have them enabled by default. However, not all supported Microsoft operating systems support the latest version of IE. Additionally, many Microsoft operating systems currently support multiple versions of IE, but this has changed according to Microsoft's Internet Explorer Support Lifecycle Policy FAQ, 'beginning January 12, 2016, only the most current version of Internet Explorer available for a supported operating system will receive technical support and security updates.' The page then goes on to list the latest supported version of IE at that date for each operating system. The next critical date would be when an operating system reaches the end of life stage, which is in Microsoft's Windows lifecycle fact sheet.

Mitigations against known attacks are not enough yet:

  • Mitigations against POODLE attack: some browsers already prevent fallback to SSL 3.0; however, this mitigation needs to be supported by not only clients but also servers. Disabling SSL 3.0 itself, implementation of 'anti-POODLE record splitting', or denying CBC ciphers in SSL 3.0 is required.
    • Google Chrome: complete (TLS_FALLBACK_SCSV is implemented since version 33, fallback to SSL 3.0 is disabled since version 39, SSL 3.0 itself is disabled by default since version 40. Support of SSL 3.0 itself was dropped since version 44.)
    • Mozilla Firefox: complete (support of SSL 3.0 itself is dropped since version 39. SSL 3.0 itself is disabled by default and fallback to SSL 3.0 are disabled since version 34, TLS_FALLBACK_SCSV is implemented since version 35. In ESR, SSL 3.0 itself is disabled by default and TLS_FALLBACK_SCSV is implemented since ESR 31.3.)
    • Internet Explorer: partial (only in version 11, SSL 3.0 is disabled by default since April 2015. Version 10 and older are still vulnerable against POODLE.)
    • Opera: complete (TLS_FALLBACK_SCSV is implemented since version 20, 'anti-POODLE record splitting', which is effective only with client-side implementation, is implemented since version 25, SSL 3.0 itself is disabled by default since version 27. Support of SSL 3.0 itself will be dropped since version 31.)
    • Safari: complete (only on OS X 10.8 and later and iOS 8, CBC ciphers during fallback to SSL 3.0 is denied, but this means it will use RC4, which is not recommended as well. Support of SSL 3.0 itself is dropped on OS X 10.11 and later and iOS 9.)
  • Mitigation against RC4 attacks:
    • Google Chrome disabled RC4 except as a fallback since version 43. RC4 is disabled since Chrome 48.
    • Firefox disabled RC4 except as a fallback since version 36. Firefox 44 disabled RC4 by default.
    • Opera disabled RC4 except as a fallback since version 30. RC4 is disabled since Opera 35.
    • Internet Explorer for Windows 7 / Server 2008 R2 and for Windows 8 / Server 2012 have set the priority of RC4 to lowest and can also disable RC4 except as a fallback through registry settings. Internet Explorer 11 Mobile 11 for Windows Phone 8.1 disable RC4 except as a fallback if no other enabled algorithm works. Edge and IE 11 disable RC4 completely in August 2016.
  • Mitigation against FREAK attack:
    • The Android Browser included with Android 4.0 and older is still vulnerable to the FREAK attack.
    • Internet Explorer 11 Mobile is still vulnerable to the FREAK attack.
    • Google Chrome, Internet Explorer (desktop), Safari (desktop & mobile), and Opera (mobile) have FREAK mitigations in place.
    • Mozilla Firefox on all platforms and Google Chrome on Windows were not affected by FREAK.
TLS/SSL support history of web browsers
BrowserVersionPlatformsSSL protocolsTLS protocolsCertificate supportVulnerabilities fixed[n 1]Protocol selection by user
[n 2]
SSL 2.0 (insecure)SSL 3.0 (insecure)TLS 1.0 (deprecated)TLS 1.1 (deprecated)TLS 1.2TLS 1.3EV
[n 3][76]
SHA-2
[77]
ECDSA
[78]
BEAST[n 4]CRIME[n 5]POODLE (SSLv3)[n 6]RC4[n 7]FREAK[79][80]Logjam
Google Chrome
(Chrome for Android)
[n 8]
[n 9]
1–9Windows (7+)
macOS (10.11+)
Linux
Android (5.0+)
iOS (12.2+)
Chrome OS
Disabled by defaultEnabled by defaultYesNoNoNoYes
(only desktop)
needs SHA-2 compatible OS[77]needs ECC compatible OS[78]Not affected
[85]
Vulnerable
(HTTPS)
VulnerableVulnerableVulnerable
(except Windows)
VulnerableYes[n 10]
10–20No[86]Enabled by defaultYesNoNoNoYes
(only desktop)
needs SHA-2 compatible OS[77]needs ECC compatible OS[78]Not affectedVulnerable
(HTTPS/SPDY)
VulnerableVulnerableVulnerable
(except Windows)
VulnerableYes[n 10]
21NoEnabled by defaultYesNoNoNoYes
(only desktop)
needs SHA-2 compatible OS[77]needs ECC compatible OS[78]Not affectedMitigated
[87]
VulnerableVulnerableVulnerable
(except Windows)
VulnerableYes[n 10]
22–29NoEnabled by defaultYesYes[88]No[88][89][90][91]NoYes
(only desktop)
needs SHA-2 compatible OS[77]needs ECC compatible OS[78]Not affectedMitigatedVulnerableVulnerableVulnerable
(except Windows)
VulnerableTemporary
[n 11]
30–32NoEnabled by defaultYesYesYes[89][90][91]NoYes
(only desktop)
needs SHA-2 compatible OS[77]needs ECC compatible OS[78]Not affectedMitigatedVulnerableVulnerableVulnerable
(except Windows)
VulnerableTemporary
[n 11]
33–37NoEnabled by defaultYesYesYesNoYes
(only desktop)
needs SHA-2 compatible OS[77]needs ECC compatible OS[78]Not affectedMitigatedPartly mitigated
[n 12]
Lowest priority
[94][95][96]
Vulnerable
(except Windows)
VulnerableTemporary
[n 11]
38, 39NoEnabled by defaultYesYesYesNoYes
(only desktop)
Yesneeds ECC compatible OS[78]Not affectedMitigatedPartly mitigatedLowest priorityVulnerable
(except Windows)
VulnerableTemporary
[n 11]
40NoDisabled by default[93][97]YesYesYesNoYes
(only desktop)
Yesneeds ECC compatible OS[78]Not affectedMitigatedMitigated
[n 13]
Lowest priorityVulnerable
(except Windows)
VulnerableYes[n 14]
41, 42NoDisabled by defaultYesYesYesNoYes
(only desktop)
Yesneeds ECC compatible OS[78]Not affectedMitigatedMitigatedLowest priorityMitigatedVulnerableYes[n 14]
43NoDisabled by defaultYesYesYesNoYes
(only desktop)
Yesneeds ECC compatible OS[78]Not affectedMitigatedMitigatedOnly as fallback
[n 15][98]
MitigatedVulnerableYes[n 14]
44–47NoNo[99]YesYesYesNoYes
(only desktop)
Yesneeds ECC compatible OS[78]Not affectedMitigatedNot affectedOnly as fallback
[n 15]
MitigatedMitigated[100]Temporary
[n 11]
48, 49NoNoYesYesYesNoYes
(only desktop)
Yesneeds ECC compatible OS[78]Not affectedMitigatedNot affectedDisabled by default[n 16][101][102]MitigatedMitigatedTemporary
[n 11]
50–53NoNoYesYesYesNoYes
(only desktop)
YesYesNot affectedMitigatedNot affectedDisabled by default[n 16][101][102]MitigatedMitigatedTemporary
[n 11]
54–66NoNoYesYesYesDisabled by default
(draft version)
Yes
(only desktop)
YesYesNot affectedMitigatedNot affectedDisabled by default[n 16][101][102]MitigatedMitigatedTemporary
[n 11]
67–69NoNoYesYesYesYes
(draft version)
Yes
(only desktop)
YesYesNot affectedMitigatedNot affectedDisabled by default[n 16][101][102]MitigatedMitigatedTemporary
[n 11]
70–83NoNoYesYesYesYesYes
(only desktop)
YesYesNot affectedMitigatedNot affectedDisabled by default[n 16][101][102]MitigatedMitigatedTemporary
[n 11]
84–90NoNoWarn by defaultWarn by defaultYesYesYes
(only desktop)
YesYesNot affectedMitigatedNot affectedDisabled by default[n 16][101][102]MitigatedMitigatedTemporary
[n 11]
91–95NoNoNo[103]No[103]YesYesYes
(only desktop)
YesYesNot affectedMitigatedNot affectedDisabled by default[n 16][101][102]MitigatedMitigatedTemporary
[n 11]
ESC 9696
BrowserVersionPlatformsSSL 2.0 (insecure)SSL 3.0 (insecure)TLS 1.0 (deprecated)TLS 1.1 (deprecated)TLS 1.2TLS 1.3EV certificateSHA-2 certificateECDSA certificateBEASTCRIMEPOODLE (SSLv3)RC4FREAKLogjamProtocol selection by user
Microsoft Edge
(Chromium-based)
OS-independent
79–83Windows (7+)
macOS (10.12+)
Linux
Android (4.4+)
iOS (11.0+)
NoNoYesYesYesYesYesYesYesMitigatedNot affectedNot affectedDisabled by defaultMitigatedMitigatedYes[n 10]
84–90NoNoWarn by defaultWarn by defaultYesYesYesYesYesMitigatedNot affectedNot affectedDisabled by defaultMitigatedMitigatedYes[n 10]
91-95NoNoNo[104]No[104]YesYesYesYesYesMitigatedNot affectedNot affectedDisabled by defaultMitigatedMitigatedYes[n 10]
ESC 9696
BrowserVersionPlatformsSSL 2.0 (insecure)SSL 3.0 (insecure)TLS 1.0 (deprecated)TLS 1.1 (deprecated)TLS 1.2TLS 1.3EV certificateSHA-2 certificateECDSA certificateBEASTCRIMEPOODLE (SSLv3)RC4FREAKLogjamProtocol selection by user
Mozilla Firefox
(Firefox for mobile)
[n 17]
1.0, 1.5Windows (7+)
macOS (10.12+)
Linux
Android (5.0+)
iOS (11.4+)
Firefox OS
Maemo
ESR only for:
Windows (7+)
macOS (10.12+)
Linux
Enabled by default
[105]
Enabled by default
[105]
Yes[105]NoNoNoNoYes[77]NoNot affected
[106]
Not affectedVulnerableVulnerableNot affectedVulnerableYes[n 10]
2Disabled by default
[105][107]
Enabled by defaultYesNoNoNoNoYesYes[78]Not affectedNot affectedVulnerableVulnerableNot affectedVulnerableYes[n 10]
3–7Disabled by defaultEnabled by defaultYesNoNoNoYesYesYesNot affectedNot affectedVulnerableVulnerableNot affectedVulnerableYes[n 10]
8–10
ESR 10
No[107]Enabled by defaultYesNoNoNoYesYesYesNot affectedNot affectedVulnerableVulnerableNot affectedVulnerableYes[n 10]
11–14NoEnabled by defaultYesNoNoNoYesYesYesNot affectedVulnerable
(SPDY)[87]
VulnerableVulnerableNot affectedVulnerableYes[n 10]
15–22
ESR 17.0–17.0.10
NoEnabled by defaultYesNoNoNoYesYesYesNot affectedMitigatedVulnerableVulnerableNot affectedVulnerableYes[n 10]
ESR 17.0.11NoEnabled by defaultYesNoNoNoYesYesYesNot affectedMitigatedVulnerableLowest priority
[108][109]
Not affectedVulnerableYes[n 10]
23NoEnabled by defaultYesDisabled by default
[110]
NoNoYesYesYesNot affectedMitigatedVulnerableVulnerableNot affectedVulnerableYes[n 18]
24, 25.0.0
ESR 24.0–24.1.0
NoEnabled by defaultYesDisabled by defaultDisabled by default
[111]
NoYesYesYesNot affectedMitigatedVulnerableVulnerableNot affectedVulnerableYes[n 18]
25.0.1, 26
ESR 24.1.1
NoEnabled by defaultYesDisabled by defaultDisabled by defaultNoYesYesYesNot affectedMitigatedVulnerableLowest priority
[108][109]
Not affectedVulnerableYes[n 18]
27–33
ESR 31.0–31.2
NoEnabled by defaultYesYes[112][113]Yes[114][113]NoYesYesYesNot affectedMitigatedVulnerableLowest priorityNot affectedVulnerableYes[n 18]
34, 35
ESR 31.3–31.7
NoDisabled by default
[115][116]
YesYesYesNoYesYesYesNot affectedMitigatedMitigated
[n 19]
Lowest priorityNot affectedVulnerableYes[n 18]
ESR 31.8NoDisabled by defaultYesYesYesNoYesYesYesNot affectedMitigatedMitigatedLowest priorityNot affectedMitigated[119]Yes[n 18]
36–38
ESR 38.0
NoDisabled by defaultYesYesYesNoYesYesYesNot affectedMitigatedMitigatedOnly as fallback
[n 15][120]
Not affectedVulnerableYes[n 18]
ESR 38.1–38.8NoDisabled by defaultYesYesYesNoYesYesYesNot affectedMitigatedMitigatedOnly as fallback
[n 15]
Not affectedMitigated[119]Yes[n 18]
39–43NoNo[121]YesYesYesNoYesYesYesNot affectedMitigatedNot affectedOnly as fallback
[n 15]
Not affectedMitigated[119]Yes[n 18]
44–48
ESR 45
NoNoYesYesYesNoYesYesYesNot affectedMitigatedNot affectedDisabled by default[n 16][122][123][124][125]Not affectedMitigatedYes[n 18]
49–59
ESR 52
NoNoYesYesYesDisabled by default
(draft version)[126]
YesYesYesNot affectedMitigatedNot affectedDisabled by default[n 16]Not affectedMitigatedYes[n 18]
60–62
ESR 60
NoNoYesYesYesYes
(draft version)
YesYesYesNot affectedMitigatedNot affectedDisabled by default[n 16]Not affectedMitigatedYes[n 18]
63–77
ESR 68
NoNoYesYesYesYesYesYesYesNot affectedMitigatedNot affectedDisabled by default[n 16]Not affectedMitigatedYes[n 18]
78–94
ESR 78.0
ESR 91.0–91.3
NoNoDisabled by default[127]Disabled by default[127]YesYesYesYesYesNot affectedMitigatedNot affectedDisabled by default[n 16]Not affectedMitigatedYes[n 18]
ESR 91.495
BrowserVersionPlatformsSSL 2.0 (insecure)SSL 3.0 (insecure)TLS 1.0 (deprecated)TLS 1.1 (deprecated)TLS 1.2TLS 1.3EV certificateSHA-2 certificateECDSA certificateBEASTCRIMEPOODLE (SSLv3)RC4FREAKLogjamProtocol selection by user
Microsoft Internet Explorer
(1–10)
[n 20]
1.xWindows 3.1, 95, NT,[n 21][n 22]
Mac OS 7, 8
No SSL/TLS support
2YesNoNoNoNoNoNoNoNoNo SSL 3.0 or TLS supportVulnerableVulnerableVulnerableN/A
3YesYes[130]NoNoNoNoNoNoNoVulnerableNot affectedVulnerableVulnerableVulnerableVulnerableUn­known
4, 5, 6Windows 3.1, 95, 98, NT, 2000[n 21][n 22]
Mac OS 7.1, 8, X,
Solaris, HP-UX
Enabled by defaultEnabled by defaultDisabled by default
[130]
NoNoNoNoNoNoVulnerableNot affectedVulnerableVulnerableVulnerableVulnerableYes[n 10]
6Windows XP[n 22]Enabled by defaultEnabled by defaultDisabled by defaultNoNoNoNoYes
(since SP3)
[n 23][131]
NoMitigatedNot affectedVulnerableVulnerableVulnerableVulnerableYes[n 10]
7, 8Disabled by default
[132]
Enabled by defaultYes[132]NoNoNoYesYes
(since SP3)
[n 23][131]
NoMitigatedNot affectedVulnerableVulnerableVulnerableVulnerableYes[n 10]
6Server 2003[n 22]Enabled by defaultEnabled by defaultDisabled by defaultNoNoNoNoYes
(KB938397+KB968730)
[n 23][131]
NoMitigatedNot affectedVulnerableVulnerableMitigated
[135]
Mitigated
[136]
Yes[n 10]
7, 8Disabled by default
[132]
Enabled by defaultYes[132]NoNoNoYesYes
(KB938397+KB968730)
[n 23][131]
NoMitigatedNot affectedVulnerableVulnerableMitigated
[135]
Mitigated
[136]
Yes[n 10]
7, 8, 9Windows VistaDisabled by defaultEnabled by defaultYesNoNoNoYesYesYes[78]MitigatedNot affectedVulnerableVulnerableMitigated
[135]
Mitigated
[136]
Yes[n 10]
7, 8, 9Server 2008Disabled by defaultEnabled by defaultYesDisabled by default[137]
(KB4019276)
Disabled by default[137]
(KB4019276)
NoYesYesYes[78]MitigatedNot affectedVulnerableVulnerableMitigated
[135]
Mitigated
[136]
Yes[n 10]
8, 9, 10Windows 7 / 8
Server 2008 R2 / 2012
Disabled by defaultEnabled by defaultYesDisabled by default
[138]
Disabled by default
[138]
NoYesYesYesMitigatedNot affectedVulnerableLowest priority
[139][n 24]
Mitigated
[135]
Mitigated
[136]
Yes[n 10]
Internet Explorer 11
[n 20]
11Windows 7
Server 2008 R2
Disabled by defaultDisabled by default
[n 25]
YesYes[141]Yes[141]NoYesYesYesMitigatedNot affectedMitigated
[n 25]
Disabled by default[145]Mitigated
[135]
Mitigated
[136]
Yes[n 10]
11[146]Windows 8.1Disabled by defaultDisabled by default
[n 25]
YesYes[141]Yes[141]NoYesYesYesMitigatedNot affectedMitigated
[n 25]
Disabled by default[n 16]Mitigated
[135]
Mitigated
[136]
Yes[n 10]
Server 2012
Server 2012 R2
BrowserVersionPlatformsSSL 2.0 (insecure)SSL 3.0 (insecure)TLS 1.0 (deprecated)TLS 1.1 (deprecated)TLS 1.2TLS 1.3EV certificateSHA-2 certificateECDSA certificateBEASTCRIMEPOODLE (SSLv3)RC4FREAKLogjamProtocol selection by user
Microsoft Edge
(12–18)
(EdgeHTML-based)
Client only

Internet Explorer 11
[n 20]
1112–13Windows 10
1507–1511
Disabled by defaultDisabled by defaultYesYesYesNoYesYesYesMitigatedNot affectedMitigatedDisabled by default[n 16]MitigatedMitigatedYes[n 10]
1114–18
(client only)
Windows 10
1607–2004
Windows Server (SAC)
1709–2004
No[147]Disabled by defaultYesYesYesNoYesYesYesMitigatedNot affectedMitigatedDisabled by default[n 16]MitigatedMitigatedYes[n 10]
Internet Explorer 11
[n 20]
11Windows 10
20H2
Windows Server (SAC) 20H2
NoDisabled by defaultYesYesYesNoYesYesYesMitigatedNot affectedMitigatedDisabled by default[n 16]MitigatedMitigatedYes[n 10]
11Windows 10
21H1
NoDisabled by defaultYesYesYesNoYesYesYesMitigatedNot affectedMitigatedDisabled by default[n 16]MitigatedMitigatedYes[n 10]
11Windows 10
21H2
NoDisabled by defaultYesYesYesNoYesYesYesMitigatedNot affectedMitigatedDisabled by default[n 16]MitigatedMitigatedYes[n 10]
11Windows 11NoDisabled by defaultYesYesYesYes[148]YesYesYesMitigatedNot affectedMitigatedDisabled by default[n 16]MitigatedMitigatedYes[n 10]
Internet Explorer 11
[n 20]
LTSC Versions
11Windows 10
LTSB 2015 (1507)
Disabled by defaultDisabled by defaultYesYesYesNoYesYesYesMitigatedNot affectedMitigatedDisabled by default[n 16]MitigatedMitigatedYes[n 10]
11Windows 10
LTSB 2016 (1607)
No[147]Disabled by defaultYesYesYesNoYesYesYesMitigatedNot affectedMitigatedDisabled by default[n 16]MitigatedMitigatedYes[n 10]
11Windows Server 2016
(LTSB / 1607)
No[147]Disabled by defaultYesYesYesNoYesYesYesMitigatedNot affectedMitigatedDisabled by default[n 16]MitigatedMitigatedYes[n 10]
11Windows 10
LTSC 2019 (1809)
Windows Server 2019
(LTSC / 1809)
NoDisabled by defaultYesYesYesNoYesYesYesMitigatedNot affectedMitigatedDisabled by default[n 16]MitigatedMitigatedYes[n 10]
11Windows 10
LTSC 2021 (21H2)
NoDisabled by defaultYesYesYesNoYesYesYesMitigatedNot affectedMitigatedDisabled by default[n 16]MitigatedMitigatedYes[n 10]
11Windows Server 2022
(LTSC)
NoDisabled by defaultYesYesYesYes[148]YesYesYesMitigatedNot affectedMitigatedDisabled by default[n 16]MitigatedMitigatedYes[n 10]
BrowserVersionPlatformsSSL 2.0 (insecure)SSL 3.0 (insecure)TLS 1.0 (deprecated)TLS 1.1 (deprecated)TLS 1.2TLS 1.3EV certificateSHA-2 certificateECDSA certificateBEASTCRIMEPOODLE (SSLv3)RC4FREAKLogjamProtocol selection by user
Microsoft Internet Explorer Mobile
[n 20]
7, 9Windows Phone 7, 7.5, 7.8Disabled by default
[132]
Enabled by defaultYesNo
[citation needed]
No
[citation needed]
NoNo
[citation needed]
YesYes[149]Un­knownNot affectedVulnerableVulnerableVulnerableVulnerableOnly with 3rd party tools[n 26]
10Windows Phone 8Disabled by defaultEnabled by defaultYesDisabled by default
[151]
Disabled by default
[151]
NoNo
[citation needed]
YesYes[152]MitigatedNot affectedVulnerableVulnerableVulnerableVulnerableOnly with 3rd party tools[n 26]
11Windows Phone 8.1Disabled by defaultEnabled by defaultYesYes[153]Yes[153]NoNo
[citation needed]
YesYesMitigatedNot affectedVulnerableOnly as fallback
[n 15][154][155]
VulnerableVulnerableOnly with 3rd party tools[n 26]
Microsoft Edge
(13–15)
(EdgeHTML-based)
[n 27]
13Windows 10 Mobile
1511
Disabled by defaultDisabled by defaultYesYesYesNoYesYesYesMitigatedNot affectedMitigatedDisabled by default[n 16]MitigatedMitigatedNo
14, 15Windows 10 Mobile
1607–1709
No[147]Disabled by defaultYesYesYesNoYesYesYesMitigatedNot affectedMitigatedDisabled by default[n 16]MitigatedMitigatedNo
BrowserVersionPlatformsSSL 2.0 (insecure)SSL 3.0 (insecure)TLS 1.0 (deprecated)TLS 1.1 (deprecated)TLS 1.2TLS 1.3EV certificateSHA-2 certificateECDSA certificateBEASTCRIMEPOODLE (SSLv3)RC4FREAKLogjamProtocol selection by user
Apple Safari
[n 28]
1Mac OS X 10.2, 10.3No[160]YesYesNoNoNoNoNoNoVulnerableNot affectedVulnerableVulnerableVulnerableVulnerableNo
2–5Mac OS X 10.4, 10.5, Win XPNoYesYesNoNoNosince v3.2NoNoVulnerableNot affectedVulnerableVulnerableVulnerableVulnerableNo
3–5Vista, Win 7NoYesYesNoNoNosince v3.2NoYes[149]VulnerableNot affectedVulnerableVulnerableVulnerableVulnerableNo
4–6Mac OS X 10.6, 10.7NoYesYesNoNoNoYesYes[77]Yes[78]VulnerableNot affectedVulnerableVulnerableVulnerableVulnerableNo
6OS X 10.8NoYesYesNoNoNoYesYesYes[78]Mitigated
[n 29]
Not affectedMitigated
[n 30]
Vulnerable
[n 30]
Mitigated
[166]
VulnerableNo
7, 9OS X 10.9NoYesYesYes[167]Yes[167]NoYesYesYesMitigated
[162]
Not affectedMitigated
[n 30]
Vulnerable
[n 30]
Mitigated
[166]
VulnerableNo
8–10OS X 10.10NoYesYesYesYesNoYesYesYesMitigatedNot affectedMitigated
[n 30]
Lowest priority
[168][n 30]
Mitigated
[166]
Mitigated
[169]
No
9–11OS X 10.11NoNoYesYesYesNoYesYesYesMitigatedNot affectedNot affectedLowest priorityMitigatedMitigatedNo
10–13macOS 10.12, 10.13NoNoYesYesYesNoYesYesYesMitigatedNot affectedNot affectedDisabled by default[n 16]MitigatedMitigatedNo
12–14macOS 10.14NoNoYesYesYesYes(since macOS 10.14.4)[170]YesYesYesMitigatedNot affectedNot affectedDisabled by default[n 16]MitigatedMitigatedNo
13, 1415macOS 10.15NoNoYesYesYesYesYesYesYesMitigatedNot affectedNot affectedDisabled by default[n 16]MitigatedMitigatedNo
1415macOS 11NoNoYesYesYesYesYesYesYesMitigatedNot affectedNot affectedDisabled by default[n 16]MitigatedMitigatedNo
15macOS 12NoNoYesYesYesYesYesYesYesMitigatedNot affectedNot affectedDisabled by default[n 16]MitigatedMitigatedNo
BrowserVersionPlatformsSSL 2.0 (insecure)SSL 3.0 (insecure)TLS 1.0 (deprecated)TLS 1.1 (deprecated)TLS 1.2TLS 1.3EV certificateSHA-2 certificateECDSA certificateBEASTCRIMEPOODLE (SSLv3)RC4FREAKLogjamProtocol selection by user
Apple Safari
(mobile)
[n 31]
3iPhone OS 1, 2No[174]YesYesNoNoNoNoNoNoVulnerableNot affectedVulnerableVulnerableVulnerableVulnerableNo
4, 5iPhone OS 3, iOS 4NoYesYesNoNoNoYes[175]Yessince iOS 4[149]VulnerableNot affectedVulnerableVulnerableVulnerableVulnerableNo
5, 6iOS 5, 6NoYesYesYes[171]Yes[171]NoYesYesYesVulnerableNot affectedVulnerableVulnerableVulnerableVulnerableNo
7iOS 7NoYesYesYesYesNoYesYesYes[176]Mitigated
[177]
Not affectedVulnerableVulnerableVulnerableVulnerableNo
8iOS 8NoYesYesYesYesNoYesYesYesMitigatedNot affectedMitigated
[n 30]
Lowest priority
[178][n 30]
Mitigated
[179]
Mitigated
[180]
No
9iOS 9NoNoYesYesYesNoYesYesYesMitigatedNot affectedNot affectedLowest priorityMitigatedMitigatedNo
10, 11iOS 10, 11NoNoYesYesYesNoYesYesYesMitigatedNot affectedNot affectedDisabled by default[n 16]MitigatedMitigatedNo
12iOS 12NoNoYesYesYesYes(since iOS 12.2)[170]YesYesYesMitigatedNot affectedNot affectedDisabled by default[n 16]MitigatedMitigatedNo
13, 14iOS 13, 14NoNoYesYesYesYesYesYesYesMitigatedNot affectedNot affectedDisabled by default[n 16]MitigatedMitigatedNo
iPadOS 13, 14
15iOS 15NoNoYesYesYesYesYesYesYesMitigatedNot affectedNot affectedDisabled by default[n 16]MitigatedMitigatedNo
iPadOS 15
BrowserVersionPlatformsSSL 2.0 (insecure)SSL 3.0 (insecure)TLS 1.0 (deprecated)TLS 1.1 (deprecated)TLS 1.2TLS 1.3EV
[n 3]
SHA-2ECDSABEAST[n 4]CRIME[n 5]POODLE (SSLv3)[n 6]RC4[n 7]FREAK[79][80]LogjamProtocol selection by user
Google Android OS
[181]
Android 1.0–4.0.4NoEnabled by defaultYesNoNoNoUn­knownYes[77]since 3.0[149][78]Un­knownUn­knownVulnerableVulnerableVulnerableVulnerableNo
Android 4.1–4.4.4NoEnabled by defaultYesDisabled by default[182]Disabled by default[182]NoUn­knownYesYesUn­knownUn­knownVulnerableVulnerableVulnerableVulnerableNo
Android 5.0–5.0.2NoEnabled by defaultYesYes[182][183]Yes[182][183]NoUn­knownYesYesUn­knownUn­knownVulnerableVulnerableVulnerableVulnerableNo
Android 5.1–5.1.1NoDisabled by default
[citation needed]
YesYesYesNoUn­knownYesYesUn­knownUn­knownNot affectedOnly as fallback
[n 15]
MitigatedMitigatedNo
Android 6.0–7.1.2NoDisabled by default
[citation needed]
YesYesYesNoUn­knownYesYesUn­knownUn­knownNot affectedDisabled by defaultMitigatedMitigatedNo
Android 8.0–8.1NoNo
[184]
YesYesYesNoUn­knownYesYesUn­knownUn­knownNot affectedDisabled by defaultMitigatedMitigatedNo
Android 9NoNoYesYesYesNoUn­knownYesYesUn­knownUn­knownNot affectedDisabled by defaultMitigatedMitigatedNo
Android 10NoNoYesYesYesYesUn­knownYesYesUn­knownUn­knownNot affectedDisabled by defaultMitigatedMitigatedNo
Android 11NoNoYesYesYesYesUn­knownYesYesUn­knownUn­knownNot affectedDisabled by defaultMitigatedMitigatedNo
Android 12NoNoUn­knownUn­knownYesYesUn­knownYesYesUn­knownUn­knownNot affectedDisabled by defaultMitigatedMitigatedNo
BrowserVersionPlatformsSSL 2.0 (insecure)SSL 3.0 (insecure)TLS 1.0 (deprecated)TLS 1.1 (deprecated)TLS 1.2TLS 1.3EV certificateSHA-2 certificateECDSA certificateBEASTCRIMEPOODLE (SSLv3)RC4FREAKLogjamProtocol selection by user
Color or NoteSignificance
Browser versionPlatform
Browser versionOperating systemFuture release; under development
Browser versionOperating systemCurrent latest release
Browser versionOperating systemFormer release; still supported
Browser versionOperating systemFormer release; long-term support still active, but will end in less than 12 months
Browser versionOperating systemFormer release; no longer supported
n/aOperating systemMixed / Unspecified
Operating system (Version+)Minimum required operating system version (for supported versions of the browser)
Operating systemNo longer supported for this operating system
Notes
  1. ^Does the browser have mitigations or is not vulnerable for the known attacks. Note actual security depends on other factors such as negotiated cipher, encryption strength, etc. (see § Cipher table).
  2. ^Whether a user or administrator can choose the protocols to be used or not. If yes, several attacks such as BEAST (vulnerable in SSL 3.0 and TLS 1.0) or POODLE (vulnerable in SSL 3.0) can be avoided.
  3. ^ abWhether EV SSL and DV SSL (normal SSL) can be distinguished by indicators (green lock icon, green address bar, etc.) or not.
  4. ^ abe.g. 1/n-1 record splitting.
  5. ^ abe.g. Disabling header compression in HTTPS/SPDY.
  6. ^ ab
    • Complete mitigations; disabling SSL 3.0 itself, 'anti-POODLE record splitting'. 'Anti-POODLE record splitting' is effective only with client-side implementation and valid according to the SSL 3.0 specification, however, it may also cause compatibility issues due to problems in server-side implementations.
    • Partial mitigations; disabling fallback to SSL 3.0, TLS_FALLBACK_SCSV, disabling cipher suites with CBC mode of operation. If the server also supports TLS_FALLBACK_SCSV, the POODLE attack will fail against this combination of server and browser, but connections where the server does not support TLS_FALLBACK_SCSV and does support SSL 3.0 will still be vulnerable. If disabling cipher suites with CBC mode of operation in SSL 3.0, only cipher suites with RC4 are available, RC4 attacks become easier.
    • When disabling SSL 3.0 manually, POODLE attack will fail.
  7. ^ ab
    • Complete mitigation; disabling cipher suites with RC4.
    • Partial mitigations to keeping compatibility with old systems; setting the priority of RC4 to lower.
  8. ^Google Chrome (and Chromium) supports TLS 1.0, and TLS 1.1 from version 22 (it was added, then dropped from version 21). TLS 1.2 support has been added, then dropped from Chrome 29.[81][82][83]
  9. ^Uses the TLS implementation provided by BoringSSL for Android, OS X, and Windows[84] or by NSS for Linux. Google is switching the TLS library used in Chrome to BoringSSL from NSS completely.
  10. ^ abcdefghijklmnopqrstuvwxyzaaabacadaeafagahaiconfigure enabling/disabling of each protocols via setting/option (menu name is dependent on browsers)
  11. ^ abcdefghijklconfigure the maximum and the minimum version of enabling protocols with command-line option
  12. ^TLS_FALLBACK_SCSV is implemented.[92] Fallback to SSL 3.0 is disabled since version 39.[93]
  13. ^In addition to TLS_FALLBACK_SCSV and disabling a fallback to SSL 3.0, SSL 3.0 itself is disabled by default.[93]
  14. ^ abcconfigure the minimum version of enabling protocols via chrome://flags[97] (the maximum version can be configured with command-line option)
  15. ^ abcdefgOnly when no cipher suites with other than RC4 is available, cipher suites with RC4 will be used as a fallback.
  16. ^ abcdefghijklmnopqrstuvwxyzaaabacadaeafagahaiajAll RC4 cipher suites are disabled by default.
  17. ^ Uses the TLS implementation provided by NSS. As of Firefox 22, Firefox supports only TLS 1.0 despite the bundled NSS supporting TLS 1.1. Since Firefox 23, TLS 1.1 can be enabled, but was not enabled by default due to issues. Firefox 24 has TLS 1.2 support disabled by default. TLS 1.1 and TLS 1.2 have been enabled by default in Firefox 27 release.
  18. ^ abcdefghijklmnconfigure the maximum and the minimum version of enabling protocols via about:config
  19. ^SSL 3.0 itself is disabled by default.[115] In addition, fallback to SSL 3.0 is disabled since version 34,[117] and TLS_FALLBACK_SCSV is implemented since 35.0 and ESR 31.3.[115][118]
  20. ^ abcdefIE uses the TLS implementation of the Microsoft Windows operating system provided by the SChannel security support provider. TLS 1.1 and 1.2 are disabled by default until IE11.[128][129]
  21. ^ abWindows NT 3.1 supports IE 1–2, Windows NT 3.5 supports IE 1–3, Windows NT 3.51 and Windows NT 4.0 supports IE 1–6
  22. ^ abcdWindows XP as well as Server 2003 and older support only weak ciphers like 3DES and RC4 out of the box.[133] The weak ciphers of these SChannel version are not only used for IE, but also for other Microsoft products running on this OS, like Office or Windows Update. Only Windows Server 2003 can get a manual update to support AES ciphers by KB948963[134]
  23. ^ abcdMS13-095 or MS14-049 for Windows Server 2003, Windows XP x64 and Windows XP SP3 (32-bit)
  24. ^RC4 can be disabled except as a fallback (Only when no cipher suites with other than RC4 is available, cipher suites with RC4 will be used as a fallback.)[140]
  25. ^ abcdFallback to SSL 3.0 is sites blocked by default in Internet Explorer 11 for Protected Mode.[142][143] SSL 3.0 is disabled by default in Internet Explorer 11 since April 2015.[144]
  26. ^ abcCould be disabled via registry editing but need 3rd Party tools to do this.[150]
  27. ^Edge (formerly known as Project Spartan) is based on a fork of the Internet Explorer 11 rendering engine.
  28. ^Safari uses the operating system implementation on Mac OS X, Windows (XP, Vista, 7)[156] with unknown version,[157] Safari 5 is the last version available for Windows. OS X 10.8 on have SecureTransport support for TLS 1.1 and 1.2[158] Qualys SSL report simulates Safari 5.1.9 connecting with TLS 1.0 not 1.1 or 1.2[159]
  29. ^In September 2013, Apple implemented BEAST mitigation in OS X 10.8 (Mountain Lion), but it was not turned on by default, resulting in Safari still being theoretically vulnerable to the BEAST attack on that platform.[161][162] BEAST mitigation has been enabled by default from OS X 10.8.5 updated in February 2014.[163]
  30. ^ abcdefghBecause Apple removed support for all CBC protocols in SSL 3.0 to mitigate POODLE,[164][165] this leaves only RC4, which is also completely broken by the RC4 attacks in SSL 3.0.
  31. ^Mobile Safari and third-party software utilizing the system UIWebView library use the iOS operating system implementation, which supports TLS 1.2 as of iOS 5.0.[171][172][173]

Libraries[edit]

Most SSL and TLS programming libraries are free and open source software.

  • BoringSSL, a fork of OpenSSL for Chrome/Chromium and Android as well as other Google applications.
  • Botan, a BSD-licensed cryptographic library written in C++.
  • BSAFE Micro Edition Suite: a multi-platform implementation of TLS written in C using a FIPS-validated cryptographic module
  • BSAFE SSL-J: a TLS library providing both a proprietary API and JSSE API, using FIPS-validated cryptographic module
  • cryptlib: a portable open source cryptography library (includes TLS/SSL implementation)
  • Delphi programmers may use a library called Indy which utilizes OpenSSL or alternatively ICS which supports TLS 1.3 now.
  • GnuTLS: a free implementation (LGPL licensed)
  • Java Secure Socket Extension: the Java API and provider implementation (named SunJSSE) included in the Java Runtime Environment[185]
  • LibreSSL: a fork of OpenSSL by OpenBSD project.
  • MatrixSSL: a dual licensed implementation
  • mbed TLS (previously PolarSSL): A tiny SSL library implementation for embedded devices that is designed for ease of use
  • Network Security Services: FIPS 140 validated open source library
  • OpenSSL: a free implementation (BSD license with some extensions)
  • SChannel: an implementation of SSL and TLS Microsoft Windows as part of its package.
  • Secure Transport: an implementation of SSL and TLS used in OS X and iOS as part of their packages.
  • wolfSSL (previously CyaSSL): Embedded SSL/TLS Library with a strong focus on speed and size.
Library support for TLS/SSL
ImplementationSSL 2.0 (insecure)SSL 3.0 (insecure)TLS 1.0TLS 1.1TLS 1.2TLS 1.3
BotanNoNo[186]YesYesYes
BSAFE Micro Edition SuiteNoDisabled by defaultYesYesYesIn development
BSAFE SSL-JNoDisabled by defaultYesYesYesYes
cryptlibNoDisabled by default at compile timeYesYesYes
GnuTLSNo[a]Disabled by default[187]YesYesYesYes[188]
Java Secure Socket ExtensionNo[a]Disabled by default[189]YesYesYesYes
LibreSSLNo[190]No[191]YesYesYesAs of version 3.2.2 [192][193]
MatrixSSLNoDisabled by default at compile time[194]YesYesYesyes
(draft version)
mbed TLS (previously PolarSSL)NoDisabled by default[195]YesYesYes
Network Security ServicesNo[b]Disabled by default[196]YesYes[197]Yes[198]Yes[199]
OpenSSLNo[200]Enabled by defaultYesYes[201]Yes[201]Yes[202]
SChannel XP / 2003[203]Disabled by default by MSIE 7Enabled by defaultEnabled by default by MSIE 7NoNoNo
SChannel Vista[204]Disabled by defaultEnabled by defaultYesNoNoNo
SChannel 2008[204]Disabled by defaultEnabled by defaultYesDisabled by default (KB4019276)[137]Disabled by default (KB4019276)[137]No
SChannel 7 / 2008 R2[205]Disabled by defaultDisabled by default in MSIE 11YesEnabled by default by MSIE 11Enabled by default by MSIE 11No
SChannel 8 / 2012[205]Disabled by defaultEnabled by defaultYesDisabled by defaultDisabled by defaultNo
SChannel 8.1 / 2012 R2, 10 v1507 & v1511[205]Disabled by defaultDisabled by default in MSIE 11YesYesYesNo
SChannel 10 v1607 / 2016[147]NoDisabled by defaultYesYesYesNo
SChannel 10 v1903[206]NoDisabled by defaultYesYesYesNo
SChannel 10 v21H1[207]NoDisabled by defaultYesYesYesNo
Secure Transport OS X 10.2–10.8 / iOS 1–4YesYesYesNoNo
Secure Transport OS X 10.9–10.10 / iOS 5–8No[c]YesYesYes[c]Yes[c]
Secure Transport OS X 10.11 / iOS 9NoNo[c]YesYesYes
NoYesYesYesYes
wolfSSL (previously CyaSSL)NoDisabled by default[208]YesYesYesYes[209]
ImplementationSSL 2.0 (insecure)SSL 3.0 (insecure)TLS 1.0TLS 1.1TLS 1.2TLS 1.3
  1. ^
    SSL 2.0 client hello is supported even though SSL 2.0 is not supported or is disabled because of the backward compatibilities.
  2. ^
    Server-side implementation of the SSL/TLS protocol still supports processing of received v2-compatible client hello messages.[210]
  3. ^
    Secure Transport: SSL 2.0 was discontinued in OS X 10.8. SSL 3.0 was discontinued in OS X 10.11 and iOS 9. TLS 1.1 and 1.2 are available on iOS 5.0 and later, and OS X 10.9 and later.[211]
  4. [212]

A paper presented at the 2012 ACMconference on computer and communications security[213] showed that few applications used some of these SSL libraries correctly, leading to vulnerabilities. According to the authors

'the root cause of most of these vulnerabilities is the terrible design of the APIs to the underlying SSL libraries. Instead of expressing high-level security properties of network tunnels such as confidentiality and authentication, these APIs expose low-level details of the SSL protocol to application developers. As a consequence, developers often use SSL APIs incorrectly, misinterpreting and misunderstanding their manifold parameters, options, side effects, and return values.'

Other uses[edit]

The Simple Mail Transfer Protocol (SMTP) can also be protected by TLS. These applications use public key certificates to verify the identity of endpoints.

TLS can also be used for tunnelling an entire network stack to create a VPN, which is the case with OpenVPN and OpenConnect. Many vendors have by now married TLS's encryption and authentication capabilities with authorization. There has also been substantial development since the late 1990s in creating client technology outside of Web-browsers, in order to enable support for client/server applications. Compared to traditional IPsec VPN technologies, TLS has some inherent advantages in firewall and NAT traversal that make it easier to administer for large remote-access populations.

TLS is also a standard method for protecting Session Initiation Protocol (SIP) application signaling. TLS can be used for providing authentication and encryption of the SIP signalling associated with VoIP and other SIP-based applications.[214]

Security[edit]

Attacks against TLS/SSL[edit]

Significant attacks against TLS/SSL are listed below.

In February 2015, IETF issued an informational RFC[215] summarizing the various known attacks against TLS/SSL.

Renegotiation attack[edit]

A vulnerability of the renegotiation procedure was discovered in August 2009 that can lead to plaintext injection attacks against SSL 3.0 and all current versions of TLS.[216] For example, it allows an attacker who can hijack an https connection to splice their own requests into the beginning of the conversation the client has with the web server. The attacker can't actually decrypt the client–server communication, so it is different from a typical man-in-the-middle attack. A short-term fix is for web servers to stop allowing renegotiation, which typically will not require other changes unless client certificate authentication is used. To fix the vulnerability, a renegotiation indication extension was proposed for TLS. It will require the client and server to include and verify information about previous handshakes in any renegotiation handshakes.[217] This extension has become a proposed standard and has been assigned the number RFC5746. The RFC has been implemented by several libraries.[218][219][220]

Downgrade attacks: FREAK attack and Logjam attack[edit]

A protocol downgrade attack (also called a version rollback attack) tricks a web server into negotiating connections with previous versions of TLS (such as SSLv2) that have long since been abandoned as insecure.

Previous modifications to the original protocols, like False Start[221] (adopted and enabled by Google Chrome[222]) or Snap Start, reportedly introduced limited TLS protocol downgrade attacks[223] or allowed modifications to the cipher suite list sent by the client to the server. In doing so, an attacker might succeed in influencing the cipher suite selection in an attempt to downgrade the cipher suite negotiated to use either a weaker symmetric encryption algorithm or a weaker key exchange.[224] A paper presented at an ACMconference on computer and communications security in 2012 demonstrated that the False Start extension was at risk: in certain circumstances it could allow an attacker to recover the encryption keys offline and to access the encrypted data.[225]

Encryption downgrade attacks can force servers and clients to negotiate a connection using cryptographically weak keys. In 2014, a man-in-the-middle attack called FREAK was discovered affecting the OpenSSL stack, the default Android web browser, and some Safari browsers.[226] The attack involved tricking servers into negotiating a TLS connection using cryptographically weak 512 bit encryption keys.

Logjam is a security exploit discovered in May 2015 that exploits the option of using legacy 'export-grade' 512-bit Diffie–Hellman groups dating back to the 1990s.[227] It forces susceptible servers to downgrade to cryptographically weak 512-bit Diffie–Hellman groups. An attacker can then deduce the keys the client and server determine using the Diffie–Hellman key exchange.

Cross-protocol attacks: DROWN[edit]

The DROWN attack is an exploit that attacks servers supporting contemporary SSL/TLS protocol suites by exploiting their support for the obsolete, insecure, SSLv2 protocol to leverage an attack on connections using up-to-date protocols that would otherwise be secure.[228][229] DROWN exploits a vulnerability in the protocols used and the configuration of the server, rather than any specific implementation error. Full details of DROWN were announced in March 2016, together with a patch for the exploit. At that time, more than 81,000 of the top 1 million most popular websites were among the TLS protected websites that were vulnerable to the DROWN attack.[229]

BEAST attack[edit]

On September 23, 2011 researchers Thai Duong and Juliano Rizzo demonstrated a proof of concept called BEAST (Browser Exploit Against SSL/TLS)[230] using a Java applet to violate same origin policy constraints, for a long-known cipher block chaining (CBC) vulnerability in TLS 1.0:[231][232] an attacker observing 2 consecutive ciphertext blocks C0, C1 can test if the plaintext block P1 is equal to x by choosing the next plaintext block P2 = x {displaystyle oplus } C0 {displaystyle oplus } C1; as per CBC operation, C2 = E(C1 {displaystyle oplus } P2) = E(C1 {displaystyle oplus } x {displaystyle oplus } C0 {displaystyle oplus } C1) = E(C0 {displaystyle oplus } x), which will be equal to C1 if x = P1. Practical exploits had not been previously demonstrated for this vulnerability, which was originally discovered by Phillip Rogaway[233] in 2002. The vulnerability of the attack had been fixed with TLS 1.1 in 2006, but TLS 1.1 had not seen wide adoption prior to this attack demonstration.

RC4 as a stream cipher is immune to BEAST attack. Therefore, RC4 was widely used as a way to mitigate BEAST attack on the server side. However, in 2013, researchers found more weaknesses in RC4. Thereafter enabling RC4 on server side was no longer recommended.[234]

Chrome and Firefox themselves are not vulnerable to BEAST attack,[85][106] however, Mozilla updated their NSS libraries to mitigate BEAST-like attacks. NSS is used by Mozilla Firefox and Google Chrome to implement SSL. Some web servers that have a broken implementation of the SSL specification may stop working as a result.[235]

Microsoft released Security Bulletin MS12-006 on January 10, 2012, which fixed the BEAST vulnerability by changing the way that the Windows Secure Channel (SChannel) component transmits encrypted network packets from the server end.[236] Users of Internet Explorer (prior to version 11) that run on older versions of Windows (Windows 7, Windows 8 and Windows Server 2008 R2) can restrict use of TLS to 1.1 or higher.

Apple fixed BEAST vulnerability by implementing 1/n-1 split and turning it on by default in OS X Mavericks, released on October 22, 2013.[237]

CRIME and BREACH attacks[edit]

The authors of the BEAST attack are also the creators of the later CRIME attack, which can allow an attacker to recover the content of web cookies when data compression is used along with TLS.[238][239] When used to recover the content of secret authentication cookies, it allows an attacker to perform session hijacking on an authenticated web session.

While the CRIME attack was presented as a general attack that could work effectively against a large number of protocols, including but not limited to TLS, and application-layer protocols such as SPDY or HTTP, only exploits against TLS and SPDY were demonstrated and largely mitigated in browsers and servers. The CRIME exploit against HTTP compression has not been mitigated at all, even though the authors of CRIME have warned that this vulnerability might be even more widespread than SPDY and TLS compression combined. In 2013 a new instance of the CRIME attack against HTTP compression, dubbed BREACH, was announced. Based on the CRIME attack a BREACH attack can extract login tokens, email addresses or other sensitive information from TLS encrypted web traffic in as little as 30 seconds (depending on the number of bytes to be extracted), provided the attacker tricks the victim into visiting a malicious web link or is able to inject content into valid pages the user is visiting (ex: a wireless network under the control of the attacker).[240] All versions of TLS and SSL are at risk from BREACH regardless of the encryption algorithm or cipher used.[241] Unlike previous instances of CRIME, which can be successfully defended against by turning off TLS compression or SPDY header compression, BREACH exploits HTTP compression which cannot realistically be turned off, as virtually all web servers rely upon it to improve data transmission speeds for users.[240] This is a known limitation of TLS as it is susceptible to chosen-plaintext attack against the application-layer data it was meant to protect.

Timing attacks on padding[edit]

Earlier TLS versions were vulnerable against the padding oracle attack discovered in 2002. A novel variant, called the Lucky Thirteen attack, was published in 2013.

Some experts[66] also recommended avoiding Triple-DES CBC. Since the last supported ciphers developed to support any program using Windows XP's SSL/TLS library like Internet Explorer on Windows XP are RC4 and Triple-DES, and since RC4 is now deprecated (see discussion of RC4 attacks), this makes it difficult to support any version of SSL for any program using this library on XP.

A fix was released as the Encrypt-then-MAC extension to the TLS specification, released as RFC7366.[242] The Lucky Thirteen attack can be mitigated in TLS 1.2 by using only AES_GCM ciphers; AES_CBC remains vulnerable.[citation needed]

POODLE attack[edit]

On October 14, 2014, Google researchers published a vulnerability in the design of SSL 3.0, which makes CBC mode of operation with SSL 3.0 vulnerable to a padding attack (CVE-2014-3566). They named this attack POODLE (Padding Oracle On Downgraded Legacy Encryption). On average, attackers only need to make 256 SSL 3.0 requests to reveal one byte of encrypted messages.[75]

Although this vulnerability only exists in SSL 3.0 and most clients and servers support TLS 1.0 and above, all major browsers voluntarily downgrade to SSL 3.0 if the handshakes with newer versions of TLS fail unless they provide the option for a user or administrator to disable SSL 3.0 and the user or administrator does so[citation needed]. Therefore, the man-in-the-middle can first conduct a version rollback attack and then exploit this vulnerability.[75]

On December 8, 2014, a variant of POODLE was announced that impacts TLS implementations that do not properly enforce padding byte requirements.[243]

RC4 attacks[edit]

Despite the existence of attacks on RC4 that broke its security, cipher suites in SSL and TLS that were based on RC4 were still considered secure prior to 2013 based on the way in which they were used in SSL and TLS. In 2011, the RC4 suite was actually recommended as a work around for the BEAST attack.[244] New forms of attack disclosed in March 2013 conclusively demonstrated the feasibility of breaking RC4 in TLS, suggesting it was not a good workaround for BEAST.[74] An attack scenario was proposed by AlFardan, Bernstein, Paterson, Poettering and Schuldt that used newly discovered statistical biases in the RC4 key table[245] to recover parts of the plaintext with a large number of TLS encryptions.[246][247] An attack on RC4 in TLS and SSL that requires 13 × 220 encryptions to break RC4 was unveiled on 8 July 2013 and later described as 'feasible' in the accompanying presentation at a USENIX Security Symposium in August 2013.[248][249] In July 2015, subsequent improvements in the attack make it increasingly practical to defeat the security of RC4-encrypted TLS.[250]

As many modern browsers have been designed to defeat BEAST attacks (except Safari for Mac OS X 10.7 or earlier, for iOS 6 or earlier, and for Windows; see § Web browsers), RC4 is no longer a good choice for TLS 1.0. The CBC ciphers which were affected by the BEAST attack in the past have become a more popular choice for protection.[66] Mozilla and Microsoft recommend disabling RC4 where possible.[251][252]RFC7465 prohibits the use of RC4 cipher suites in all versions of TLS.

On September 1, 2015, Microsoft, Google and Mozilla announced that RC4 cipher suites would be disabled by default in their browsers (Microsoft Edge, Internet Explorer 11 on Windows 7/8.1/10, Firefox, and Chrome) in early 2016.[253][254][255]

Truncation attack[edit]

A TLS (logout) truncation attack blocks a victim's account logout requests so that the user unknowingly remains logged into a web service. When the request to sign out is sent, the attacker injects an unencrypted TCP FIN message (no more data from sender) to close the connection. The server therefore doesn't receive the logout request and is unaware of the abnormal termination.[256]

Published in July 2013,[257][258] the attack causes web services such as Gmail and Hotmail to display a page that informs the user that they have successfully signed-out, while ensuring that the user's browser maintains authorization with the service, allowing an attacker with subsequent access to the browser to access and take over control of the user's logged-in account. The attack does not rely on installing malware on the victim's computer; attackers need only place themselves between the victim and the web server (e.g., by setting up a rogue wireless hotspot).[256] This vulnerability also requires access to the victim's computer.Another possibility is when using FTP the data connection can have a false FIN in the data stream, and if the protocol rules for exchanging close_notify alerts is not adhered to a file can be truncated.

Unholy PAC attack[edit]

This attack, discovered in mid-2016, exploits weaknesses in the Web Proxy Autodiscovery Protocol (WPAD) to expose the URL that a web user is attempting to reach via a TLS-enabled web link.[259] Disclosure of a URL can violate a user's privacy, not only because of the website accessed, but also because URLs are sometimes used to authenticate users. Document sharing services, such as those offered by Google and Dropbox, also work by sending a user a security token that's included in the URL. An attacker who obtains such URLs may be able to gain full access to a victim's account or data.

The exploit works against almost all browsers and operating systems.

Sweet32 attack[edit]

The Sweet32 attack breaks all 64-bit block ciphers used in CBC mode as used in TLS by exploiting a birthday attack and either a man-in-the-middle attack or injection of a malicious JavaScript into a web page. The purpose of the man-in-the-middle attack or the JavaScript injection is to allow the attacker to capture enough traffic to mount a birthday attack.[260]

Implementation errors: Heartbleed bug, BERserk attack, Cloudflare bug[edit]

The Heartbleed bug is a serious vulnerability specific to the implementation of SSL/TLS in the popular OpenSSL cryptographic software library, affecting versions 1.0.1 to 1.0.1f. This weakness, reported in April 2014, allows attackers to steal private keys from servers that should normally be protected.[261] The Heartbleed bug allows anyone on the Internet to read the memory of the systems protected by the vulnerable versions of the OpenSSL software. This compromises the secret private keys associated with the public certificates used to identify the service providers and to encrypt the traffic, the names and passwords of the users and the actual content. This allows attackers to eavesdrop on communications, steal data directly from the services and users and to impersonate services and users.[262] The vulnerability is caused by a buffer over-read bug in the OpenSSL software, rather than a defect in the SSL or TLS protocol specification.

In September 2014, a variant of Daniel Bleichenbacher's PKCS#1 v1.5 RSA Signature Forgery vulnerability[263] was announced by Intel Security Advanced Threat Research. This attack, dubbed BERserk, is a result of incomplete ASN.1 length decoding of public key signatures in some SSL implementations, and allows a man-in-the-middle attack by forging a public key signature.[264]

In February 2015, after media reported the hidden pre-installation of Superfish adware on some Lenovo notebooks,[265] a researcher found a trusted root certificate on affected Lenovo machines to be insecure, as the keys could easily be accessed using the company name, Komodia, as a passphrase.[266] The Komodia library was designed to intercept client-side TLS/SSL traffic for parental control and surveillance, but it was also used in numerous adware programs, including Superfish, that were often surreptitiously installed unbeknownst to the computer user. In turn, these potentially unwanted programs installed the corrupt root certificate, allowing attackers to completely control web traffic and confirm false websites as authentic.

In May 2016, it was reported that dozens of Danish HTTPS-protected websites belonging to Visa Inc. were vulnerable to attacks allowing hackers to inject malicious code and forged content into the browsers of visitors.[267] The attacks worked because the TLS implementation used on the affected servers incorrectly reused random numbers (nonces) that are intended to be used only once, ensuring that each TLS handshake is unique.[267]

In February 2017, an implementation error caused by a single mistyped character in code used to parse HTML created a buffer overflow error on Cloudflare servers. Similar in its effects to the Heartbleed bug discovered in 2014, this overflow error, widely known as Cloudbleed, allowed unauthorized third parties to read data in the memory of programs running on the servers—data that should otherwise have been protected by TLS.[268]

Survey of websites vulnerable to attacks[edit]

As of July 2021, the Trustworthy Internet Movement estimated the ratio of websites that are vulnerable to TLS attacks.[73]

Survey of the TLS vulnerabilities of the most popular websites
AttacksSecurity
InsecureDependsSecureOther
Renegotiation attack0.1%
support insecure renegotiation
<0.1%
support both
99.2%
support secure renegotiation
0.7%
no support
RC4 attacks0.4%
support RC4 suites used with modern browsers
6.5%
support some RC4 suites
93.1%
no support
N/A
TLS Compression (CRIME attack)>0.0%
vulnerable
N/AN/AN/A
Heartbleed>0.0%
vulnerable
N/AN/AN/A
ChangeCipherSpec injection attack0.1%
vulnerable and exploitable
0.2%
vulnerable, not exploitable
98.5%
not vulnerable
1.2%
unknown
POODLE attack against TLS
(Original POODLE against SSL 3.0 is not included)
0.1%
vulnerable and exploitable
0.1%
vulnerable, not exploitable
99.8%
not vulnerable
0.2%
unknown
Protocol downgrade6.6%
Downgrade defence not supported
N/A72.3%
Downgrade defence supported
21.0%
unknown

Forward secrecy[edit]

Forward secrecy is a property of cryptographic systems which ensures that a session key derived from a set of public and private keys will not be compromised if one of the private keys is compromised in the future.[269] Without forward secrecy, if the server's private key is compromised, not only will all future TLS-encrypted sessions using that server certificate be compromised, but also any past sessions that used it as well (provided of course that these past sessions were intercepted and stored at the time of transmission).[270] An implementation of TLS can provide forward secrecy by requiring the use of ephemeral Diffie–Hellman key exchange to establish session keys, and some notable TLS implementations do so exclusively: e.g., Gmail and other Google HTTPS services that use OpenSSL.[271] However, many clients and servers supporting TLS (including browsers and web servers) are not configured to implement such restrictions.[272][273] In practice, unless a web service uses Diffie–Hellman key exchange to implement forward secrecy, all of the encrypted web traffic to and from that service can be decrypted by a third party if it obtains the server's master (private) key; e.g., by means of a court order.[274]

Even where Diffie–Hellman key exchange is implemented, server-side session management mechanisms can impact forward secrecy. The use of TLS session tickets (a TLS extension) causes the session to be protected by AES128-CBC-SHA256 regardless of any other negotiated TLS parameters, including forward secrecy ciphersuites, and the long-lived TLS session ticket keys defeat the attempt to implement forward secrecy.[275][276][277] Stanford University research in 2014 also found that of 473,802 TLS servers surveyed, 82.9% of the servers deploying ephemeral Diffie–Hellman (DHE) key exchange to support forward secrecy were using weak Diffie–Hellman parameters. These weak parameter choices could potentially compromise the effectiveness of the forward secrecy that the servers sought to provide.[278]

Since late 2011, Google has provided forward secrecy with TLS by default to users of its Gmail service, along with Google Docs and encrypted search, among other services.[279]Since November 2013, Twitter has provided forward secrecy with TLS to users of its service.[280] As of August 2019, about 80% of TLS-enabled websites are configured to use cipher suites that provide forward secrecy to most web browsers.[73]

TLS interception[edit]

TLS interception (or HTTPS interception if applied particularly to that protocol) is the practice of intercepting an encrypted data stream in order to decrypt it, read and possibly manipulate it, and then re-encrypt it and send the data on its way again. This is done by way of a 'transparent proxy': the interception software terminates the incoming TLS connection, inspects the HTTP plaintext, and then creates a new TLS connection to the destination.[281]

TLS / HTTPS interception is used as an information security measure by network operators in order to be able to scan for and protect against the intrusion of malicious content into the network, such as computer viruses and other malware.[281] Such content could otherwise not be detected as long as it is protected by encryption, which is increasingly the case as a result of the routine use of HTTPS and other secure protocols.

A significant drawback of TLS / HTTPS interception is that it introduces new security risks of its own. One notable limitation is that it provides a point where network traffic is available unencrypted thus giving attackers an incentive to attack this point in particular in order to gain access to otherwise secure content. The interception also allows the network operator, or persons who gain access to its interception system, to perform man-in-the-middle attacks against network users. A 2017 study found that 'HTTPS interception has become startlingly widespread, and that interception products as a class have a dramatically negative impact on connection security'.[281]

Protocol details[edit]

The TLS protocol exchanges records, which encapsulate the data to be exchanged in a specific format (see below). Each record can be compressed, padded, appended with a message authentication code (MAC), or encrypted, all depending on the state of the connection. Each record has a content type field that designates the type of data encapsulated, a length field and a TLS version field. The data encapsulated may be control or procedural messages of the TLS itself, or simply the application data needed to be transferred by TLS. The specifications (cipher suite, keys etc.) required to exchange application data by TLS, are agreed upon in the 'TLS handshake' between the client requesting the data and the server responding to requests. The protocol therefore defines both the structure of payloads transferred in TLS and the procedure to establish and monitor the transfer.

Best Free Dating Site In United State

TLS handshake[edit]

Simplified illustration of the full TLS 1.2 handshake with timing information.

When the connection starts, the record encapsulates a 'control' protocol – the handshake messaging protocol (content type 22). This protocol is used to exchange all the information required by both sides for the exchange of the actual application data by TLS. It defines the format of messages and the order of their exchange. These may vary according to the demands of the client and server – i.e., there are several possible procedures to set up the connection. This initial exchange results in a successful TLS connection (both parties ready to transfer application data with TLS) or an alert message (as specified below).

Basic TLS handshake[edit]

A typical connection example follows, illustrating a handshake where the server (but not the client) is authenticated by its certificate:

  1. Negotiation phase:
    • A client sends a ClientHello message specifying the highest TLS protocol version it supports, a random number, a list of suggested cipher suites and suggested compression methods. If the client is attempting to perform a resumed handshake, it may send a session ID. If the client can use Application-Layer Protocol Negotiation, it may include a list of supported application protocols, such as HTTP/2.
    • The server responds with a ServerHello message, containing the chosen protocol version, a random number, cipher suite and compression method from the choices offered by the client. To confirm or allow resumed handshakes the server may send a session ID. The chosen protocol version should be the highest that both the client and server support. For example, if the client supports TLS version 1.1 and the server supports version 1.2, version 1.1 should be selected; version 1.2 should not be selected.
    • The server sends its Certificate message (depending on the selected cipher suite, this may be omitted by the server).[282]
    • The server sends its ServerKeyExchange message (depending on the selected cipher suite, this may be omitted by the server). This message is sent for all DHE, ECDHE and DH_anon cipher suites.[7]
    • The server sends a ServerHelloDone message, indicating it is done with handshake negotiation.
    • The client responds with a ClientKeyExchange message, which may contain a PreMasterSecret, public key, or nothing. (Again, this depends on the selected cipher.) This PreMasterSecret is encrypted using the public key of the server certificate.
    • The client and server then use the random numbers and PreMasterSecret to compute a common secret, called the 'master secret'. All other key data (session keys such as IV, symmetric encryption key, MAC key[283]) for this connection is derived from this master secret (and the client- and server-generated random values), which is passed through a carefully designed pseudorandom function.
  2. The client now sends a ChangeCipherSpec record, essentially telling the server, 'Everything I tell you from now on will be authenticated (and encrypted if encryption parameters were present in the server certificate).' The ChangeCipherSpec is itself a record-level protocol with content type of 20.
    • The client sends an authenticated and encrypted Finished message, containing a hash and MAC over the previous handshake messages.
    • The server will attempt to decrypt the client's Finished message and verify the hash and MAC. If the decryption or verification fails, the handshake is considered to have failed and the connection should be torn down.
  3. Finally, the server sends a ChangeCipherSpec, telling the client, 'Everything I tell you from now on will be authenticated (and encrypted, if encryption was negotiated).'
    • The server sends its authenticated and encrypted Finished message.
    • The client performs the same decryption and verification procedure as the server did in the previous step.
  4. Application phase: at this point, the 'handshake' is complete and the application protocol is enabled, with content type of 23. Application messages exchanged between client and server will also be authenticated and optionally encrypted exactly like in their Finished message. Otherwise, the content type will return 25 and the client will not authenticate.

Client-authenticated TLS handshake[edit]

The following full example shows a client being authenticated (in addition to the server as in the example above; see mutual authentication) via TLS using certificates exchanged between both peers.

  1. Negotiation Phase:
    • A client sends a ClientHello message specifying the highest TLS protocol version it supports, a random number, a list of suggested cipher suites and compression methods.
    • The server responds with a ServerHello message, containing the chosen protocol version, a random number, cipher suite and compression method from the choices offered by the client. The server may also send a session id as part of the message to perform a resumed handshake.
    • The server sends its Certificate message (depending on the selected cipher suite, this may be omitted by the server).[282]
    • The server sends its ServerKeyExchange message (depending on the selected cipher suite, this may be omitted by the server). This message is sent for all DHE, ECDHE and DH_anon ciphersuites.[7]
    • The server sends a CertificateRequest message, to request a certificate from the client.
    • The server sends a ServerHelloDone message, indicating it is done with handshake negotiation.
    • The client responds with a Certificate message, which contains the client's certificate.
    • The client sends a ClientKeyExchange message, which may contain a PreMasterSecret, public key, or nothing. (Again, this depends on the selected cipher.) This PreMasterSecret is encrypted using the public key of the server certificate.
    • The client sends a CertificateVerify message, which is a signature over the previous handshake messages using the client's certificate's private key. This signature can be verified by using the client's certificate's public key. This lets the server know that the client has access to the private key of the certificate and thus owns the certificate.
    • The client and server then use the random numbers and PreMasterSecret to compute a common secret, called the 'master secret'. All other key data ('session keys') for this connection is derived from this master secret (and the client- and server-generated random values), which is passed through a carefully designed pseudorandom function.
  2. The client now sends a ChangeCipherSpec record, essentially telling the server, 'Everything I tell you from now on will be authenticated (and encrypted if encryption was negotiated). ' The ChangeCipherSpec is itself a record-level protocol and has type 20 and not 22.
    • Finally, the client sends an encrypted Finished message, containing a hash and MAC over the previous handshake messages.
    • The server will attempt to decrypt the client's Finished message and verify the hash and MAC. If the decryption or verification fails, the handshake is considered to have failed and the connection should be torn down.
  3. Finally, the server sends a ChangeCipherSpec, telling the client, 'Everything I tell you from now on will be authenticated (and encrypted if encryption was negotiated). '
    • The server sends its own encrypted Finished message.
    • The client performs the same decryption and verification procedure as the server did in the previous step.
  4. Application phase: at this point, the 'handshake' is complete and the application protocol is enabled, with content type of 23. Application messages exchanged between client and server will also be encrypted exactly like in their Finished message.

Resumed TLS handshake[edit]

Public key operations (e.g., RSA) are relatively expensive in terms of computational power. TLS provides a secure shortcut in the handshake mechanism to avoid these operations: resumed sessions. Resumed sessions are implemented using session IDs or session tickets.

Apart from the performance benefit, resumed sessions can also be used for single sign-on, as it guarantees that both the original session and any resumed session originate from the same client. This is of particular importance for the FTP over TLS/SSL protocol, which would otherwise suffer from a man-in-the-middle attack in which an attacker could intercept the contents of the secondary data connections.[284]

TLS 1.3 handshake[edit]

The TLS 1.3 handshake was condensed to only one round trip compared to the two round trips required in previous versions of TLS/SSL.

First the client sends a clientHello message to the server that contains a list of supported ciphers in order of the client's preference and makes a guess on what key algorithm will be used so that it can send a secret key to share if needed. By making a guess at what key algorithm will be used, the server eliminates a round trip. After receiving the clientHello, the server sends a serverHello with its key, a certificate, the chosen cipher suite and the finished message.

After the client receives the server's finished message, it now is coordinated with the server on which cipher suite to use.[285]

Session IDs[edit]

In an ordinary full handshake, the server sends a session id as part of the ServerHello message. The client associates this session id with the server's IP address and TCP port, so that when the client connects again to that server, it can use the session id to shortcut the handshake. In the server, the session id maps to the cryptographic parameters previously negotiated, specifically the 'master secret'. Both sides must have the same 'master secret' or the resumed handshake will fail (this prevents an eavesdropper from using a session id). The random data in the ClientHello and ServerHello messages virtually guarantee that the generated connection keys will be different from in the previous connection. In the RFCs, this type of handshake is called an abbreviated handshake. It is also described in the literature as a restart handshake.

  1. Negotiation phase:
    • A client sends a ClientHello message specifying the highest TLS protocol version it supports, a random number, a list of suggested cipher suites and compression methods. Included in the message is the session id from the previous TLS connection.
    • The server responds with a ServerHello message, containing the chosen protocol version, a random number, cipher suite and compression method from the choices offered by the client. If the server recognizes the session id sent by the client, it responds with the same session id. The client uses this to recognize that a resumed handshake is being performed. If the server does not recognize the session id sent by the client, it sends a different value for its session id. This tells the client that a resumed handshake will not be performed. At this point, both the client and server have the 'master secret' and random data to generate the key data to be used for this connection.
  2. The server now sends a ChangeCipherSpec record, essentially telling the client, 'Everything I tell you from now on will be encrypted.' The ChangeCipherSpec is itself a record-level protocol and has type 20 and not 22.
    • Finally, the server sends an encrypted Finished message, containing a hash and MAC over the previous handshake messages.
    • The client will attempt to decrypt the server's Finished message and verify the hash and MAC. If the decryption or verification fails, the handshake is considered to have failed and the connection should be torn down.
  3. Finally, the client sends a ChangeCipherSpec, telling the server, 'Everything I tell you from now on will be encrypted. '
    • The client sends its own encrypted Finished message.
    • The server performs the same decryption and verification procedure as the client did in the previous step.
  4. Application phase: at this point, the 'handshake' is complete and the application protocol is enabled, with content type of 23. Application messages exchanged between client and server will also be encrypted exactly like in their Finished message.
Session tickets[edit]

RFC5077 extends TLS via use of session tickets, instead of session IDs. It defines a way to resume a TLS session without requiring that session-specific state is stored at the TLS server.

When using session tickets, the TLS server stores its session-specific state in a session ticket and sends the session ticket to the TLS client for storing. The client resumes a TLS session by sending the session ticket to the server, and the server resumes the TLS session according to the session-specific state in the ticket. The session ticket is encrypted and authenticated by the server, and the server verifies its validity before using its contents.

One particular weakness of this method with OpenSSL is that it always limits encryption and authentication security of the transmitted TLS session ticket to AES128-CBC-SHA256, no matter what other TLS parameters were negotiated for the actual TLS session.[276] This means that the state information (the TLS session ticket) is not as well protected as the TLS session itself. Of particular concern is OpenSSL's storage of the keys in an application-wide context (SSL_CTX), i.e. for the life of the application, and not allowing for re-keying of the AES128-CBC-SHA256 TLS session tickets without resetting the application-wide OpenSSL context (which is uncommon, error-prone and often requires manual administrative intervention).[277][275]

TLS record[edit]

This is the general format of all TLS records.

TLS record format, general
OffsetByte +0Byte +1Byte +2Byte +3
Byte
0
Content typeN/A
Bytes
1..4
Legacy versionLength
(Major)(Minor)(bits 15..8)(bits 7..0)
Bytes
5..(m−1)
Protocol message(s)
Bytes
m..(p−1)
MAC (optional)
Bytes
p..(q−1)
Padding (block ciphers only)
Content type
This field identifies the Record Layer Protocol Type contained in this record.
Content types
HexDecType
0x1420ChangeCipherSpec
0x1521Alert
0x1622Handshake
0x1723Application
0x1824Heartbeat
Legacy version
This field identifies the major and minor version of TLS prior to TLS 1.3 for the contained message. For a ClientHello message, this need not be the highest version supported by the client. For TLS 1.3 and later, this must to be set 0x0303 and application must send supported versions in an extra message extension block.
Versions
Major
version
Minor
version
Version type
30SSL 3.0
31TLS 1.0
32TLS 1.1
33TLS 1.2
34TLS 1.3
Length
The length of 'protocol message(s)', 'MAC' and 'padding' fields combined (i.e. q−5), not to exceed 214 bytes (16 KiB).
Protocol message(s)
One or more messages identified by the Protocol field. Note that this field may be encrypted depending on the state of the connection.
MAC and padding
A message authentication code computed over the 'protocol message(s)' field, with additional key material included. Note that this field may be encrypted, or not included entirely, depending on the state of the connection.
No 'MAC' or 'padding' fields can be present at end of TLS records before all cipher algorithms and parameters have been negotiated and handshaked and then confirmed by sending a CipherStateChange record (see below) for signalling that these parameters will take effect in all further records sent by the same peer.

Handshake protocol[edit]

Most messages exchanged during the setup of the TLS session are based on this record, unless an error or warning occurs and needs to be signaled by an Alert protocol record (see below), or the encryption mode of the session is modified by another record (see ChangeCipherSpec protocol below).

TLS record format for handshake protocol
OffsetByte +0Byte +1Byte +2Byte +3
Byte
0
22N/A
Bytes
1..4
Legacy versionLength
(Major)(Minor)(bits 15..8)(bits 7..0)
Bytes
5..8
Message typeHandshake message data length
(bits 23..16)(bits 15..8)(bits 7..0)
Bytes
9..(n−1)
Handshake message data
Bytes
n..(n+3)
Message typeHandshake message data length
(bits 23..16)(bits 15..8)(bits 7..0)
Bytes
(n+4)..
Handshake message data
Message type
This field identifies the handshake message type.
Message types
CodeDescription
0HelloRequest
1ClientHello
2ServerHello
4NewSessionTicket
8EncryptedExtensions (TLS 1.3 only)
11Certificate
12ServerKeyExchange
13CertificateRequest
14ServerHelloDone
15CertificateVerify
16ClientKeyExchange
20Finished
Handshake message data length
This is a 3-byte field indicating the length of the handshake data, not including the header.

Note that multiple handshake messages may be combined within one record.

Alert protocol[edit]

This record should normally not be sent during normal handshaking or application exchanges. However, this message can be sent at any time during the handshake and up to the closure of the session. If this is used to signal a fatal error, the session will be closed immediately after sending this record, so this record is used to give a reason for this closure. If the alert level is flagged as a warning, the remote can decide to close the session if it decides that the session is not reliable enough for its needs (before doing so, the remote may also send its own signal).

TLS record format for alert protocol
OffsetByte +0Byte +1Byte +2Byte +3
Byte
0
21N/A
Bytes
1..4
Legacy versionLength
(Major)(Minor)02
Bytes
5..6
LevelDescriptionN/A
Bytes
7..(p−1)
MAC (optional)
Bytes
p..(q−1)
Padding (block ciphers only)
Level
This field identifies the level of alert. If the level is fatal, the sender should close the session immediately. Otherwise, the recipient may decide to terminate the session itself, by sending its own fatal alert and closing the session itself immediately after sending it. The use of Alert records is optional, however if it is missing before the session closure, the session may be resumed automatically (with its handshakes).
Normal closure of a session after termination of the transported application should preferably be alerted with at least the Close notify Alert type (with a simple warning level) to prevent such automatic resume of a new session. Signalling explicitly the normal closure of a secure session before effectively closing its transport layer is useful to prevent or detect attacks (like attempts to truncate the securely transported data, if it intrinsically does not have a predetermined length or duration that the recipient of the secured data may expect).
Alert level types
CodeLevel typeConnection state
1warningconnection or security may be unstable.
2fatalconnection or security may be compromised, or an unrecoverable error has occurred.
Description
This field identifies which type of alert is being sent.
Alert description types
CodeDescriptionLevel typesNote
0Close notifywarning/fatal
10Unexpected messagefatal
20Bad record MACfatalPossibly a bad SSL implementation, or payload has been tampered with e.g. FTP firewall rule on FTPS server.
21Decryption failedfatalTLS only, reserved
22Record overflowfatalTLS only
30Decompression failurefatal
40Handshake failurefatal
41No certificatewarning/fatalSSL 3.0 only, reserved
42Bad certificatewarning/fatal
43Unsupported certificatewarning/fatale.g. certificate has only server authentication usage enabled and is presented as a client certificate
44Certificate revokedwarning/fatal
45Certificate expiredwarning/fatalCheck server certificate expire also check no certificate in the chain presented has expired
46Certificate unknownwarning/fatal
47Illegal parameterfatal
48Unknown CA (Certificate authority)fatalTLS only
49Access deniedfatalTLS only – e.g. no client certificate has been presented (TLS: Blank certificate message or SSLv3: No Certificate alert), but server is configured to require one.
50Decode errorfatalTLS only
51Decrypt errorwarning/fatalTLS only
60Export restrictionfatalTLS only, reserved
70Protocol versionfatalTLS only
71Insufficient securityfatalTLS only
80Internal errorfatalTLS only
86Inappropriate fallbackfatalTLS only
90User canceledfatalTLS only
100No renegotiationwarningTLS only
110Unsupported extensionwarningTLS only
111Certificate unobtainablewarningTLS only
112Unrecognized namewarning/fatalTLS only; client's Server Name Indicator specified a hostname not supported by the server
113Bad certificate status responsefatalTLS only
114Bad certificate hash valuefatalTLS only
115Unknown PSK identity (used in TLS-PSK and TLS-SRP)fatalTLS only

ChangeCipherSpec protocol[edit]

TLS record format for ChangeCipherSpec protocol
OffsetByte +0Byte +1Byte +2Byte +3
Byte
0
20N/A
Bytes
1..4
Legacy versionLength
(Major)(Minor)01
Byte
5
CCS protocol typeN/A
CCS protocol type
Currently only 1.

Application protocol[edit]

TLS record format for application protocol
OffsetByte +0Byte +1Byte +2Byte +3
Byte
0
23N/A
Bytes
1..4
Legacy versionLength
(Major)(Minor)(bits 15..8)(bits 7..0)
Bytes
5..(m−1)
Application data
Bytes
m..(p−1)
MAC (optional)
Bytes
p..(q−1)
Padding (block ciphers only)
Length
Length of application data (excluding the protocol header and including the MAC and padding trailers)
MAC
32 bytes for the SHA-256-based HMAC, 20 bytes for the SHA-1-based HMAC, 16 bytes for the MD5-based HMAC.
Padding
Variable length; last byte contains the padding length.

Support for name-based virtual servers[edit]

From the application protocol point of view, TLS belongs to a lower layer, although the TCP/IP model is too coarse to show it. This means that the TLS handshake is usually (except in the STARTTLS case) performed before the application protocol can start. In the name-based virtual server feature being provided by the application layer, all co-hosted virtual servers share the same certificate because the server has to select and send a certificate immediately after the ClientHello message. This is a big problem in hosting environments because it means either sharing the same certificate among all customers or using a different IP address for each of them.

There are two known workarounds provided by X.509:

  • If all virtual servers belong to the same domain, a wildcard certificate can be used.[286] Besides the loose host name selection that might be a problem or not, there is no common agreement about how to match wildcard certificates. Different rules are applied depending on the application protocol or software used.[287]
  • Add every virtual host name in the subjectAltName extension. The major problem being that the certificate needs to be reissued whenever a new virtual server is added.

To provide the server name, RFC4366 Transport Layer Security (TLS) Extensions allow clients to include a Server Name Indication extension (SNI) in the extended ClientHello message. This extension hints to the server immediately which name the client wishes to connect to, so the servercan select the appropriate certificate to send to the clients.

RFC2817 also documents a method to implement name-based virtual hosting by upgrading HTTP to TLS via an HTTP/1.1 Upgrade header. Normally this is to securely implement HTTP over TLS within the main 'http' URI scheme (which avoids forking the URI space and reduces the number of used ports), however, few implementations currently support this.[citation needed]

Standards[edit]

Primary standards[edit]

The current approved version of TLS is version 1.3, which is specified in:

  • RFC8446: 'The Transport Layer Security (TLS) Protocol Version 1.3'.

The current standard replaces these former versions, which are now considered obsolete:

  • RFC2246: 'The TLS Protocol Version 1.0'.
  • RFC4346: 'The Transport Layer Security (TLS) Protocol Version 1.1'.
  • RFC5246: 'The Transport Layer Security (TLS) Protocol Version 1.2'.

As well as the never standardized SSL 2.0 and 3.0, which are considered obsolete:

  • Internet Draft (1995), SSL Version 2.0
  • RFC6101: 'The Secure Sockets Layer (SSL) Protocol Version 3.0'.

Extensions[edit]

Other RFCs subsequently extended TLS.

Extensions to TLS 1.0 include:

  • RFC2595: 'Using TLS with IMAP, POP3 and ACAP'. Specifies an extension to the IMAP, POP3 and ACAP services that allow the server and client to use transport-layer security to provide private, authenticated communication over the Internet.
  • RFC2712: 'Addition of Kerberos Cipher Suites to Transport Layer Security (TLS)'. The 40-bit cipher suites defined in this memo appear only for the purpose of documenting the fact that those cipher suite codes have already been assigned.
  • RFC2817: 'Upgrading to TLS Within HTTP/1.1', explains how to use the Upgrade mechanism in HTTP/1.1 to initiate Transport Layer Security (TLS) over an existing TCP connection. This allows unsecured and secured HTTP traffic to share the same well known port (in this case, http: at 80 rather than https: at 443).
  • RFC2818: 'HTTP Over TLS', distinguishes secured traffic from insecure traffic by the use of a different 'server port'.
  • RFC3207: 'SMTP Service Extension for Secure SMTP over Transport Layer Security'. Specifies an extension to the SMTP service that allows an SMTP server and client to use transport-layer security to provide private, authenticated communication over the Internet.
  • RFC3268: 'AES Ciphersuites for TLS'. Adds Advanced Encryption Standard (AES) cipher suites to the previously existing symmetric ciphers.
  • RFC3546: 'Transport Layer Security (TLS) Extensions', adds a mechanism for negotiating protocol extensions during session initialisation and defines some extensions. Made obsolete by RFC4366.
  • RFC3749: 'Transport Layer Security Protocol Compression Methods', specifies the framework for compression methods and the DEFLATE compression method.
  • RFC3943: 'Transport Layer Security (TLS) Protocol Compression Using Lempel-Ziv-Stac (LZS)'.
  • RFC4132: 'Addition of Camellia Cipher Suites to Transport Layer Security (TLS)'.
  • RFC4162: 'Addition of SEED Cipher Suites to Transport Layer Security (TLS)'.
  • RFC4217: 'Securing FTP with TLS'.
  • RFC4279: 'Pre-Shared Key Ciphersuites for Transport Layer Security (TLS)', adds three sets of new cipher suites for the TLS protocol to support authentication based on pre-shared keys.

Extensions to TLS 1.1 include:

  • RFC4347: 'Datagram Transport Layer Security' specifies a TLS variant that works over datagram protocols (such as UDP).
  • RFC4366: 'Transport Layer Security (TLS) Extensions' describes both a set of specific extensions and a generic extension mechanism.
  • RFC4492: 'Elliptic Curve Cryptography (ECC) Cipher Suites for Transport Layer Security (TLS)'.
  • RFC4680: 'TLS Handshake Message for Supplemental Data'.
  • RFC4681: 'TLS User Mapping Extension'.
  • RFC4785: 'Pre-Shared Key (PSK) Ciphersuites with NULL Encryption for Transport Layer Security (TLS)'.
  • RFC5054: 'Using the Secure Remote Password (SRP) Protocol for TLS Authentication'. Defines the TLS-SRP ciphersuites.
  • RFC5077: 'Transport Layer Security (TLS) Session Resumption without Server-Side State'.
  • RFC5081: 'Using OpenPGP Keys for Transport Layer Security (TLS) Authentication', obsoleted by RFC6091.

Extensions to TLS 1.2 include:

  • RFC5288: 'AES Galois Counter Mode (GCM) Cipher Suites for TLS'.
  • RFC5289: 'TLS Elliptic Curve Cipher Suites with SHA-256/384 and AES Galois Counter Mode (GCM)'.
  • RFC5746: 'Transport Layer Security (TLS) Renegotiation Indication Extension'.
  • RFC5878: 'Transport Layer Security (TLS) Authorization Extensions'.
  • RFC5932: 'Camellia Cipher Suites for TLS'
  • RFC6066: 'Transport Layer Security (TLS) Extensions: Extension Definitions', includes Server Name Indication and OCSP stapling.
  • RFC6091: 'Using OpenPGP Keys for Transport Layer Security (TLS) Authentication'.
  • RFC6176: 'Prohibiting Secure Sockets Layer (SSL) Version 2.0'.
  • RFC6209: 'Addition of the ARIA Cipher Suites to Transport Layer Security (TLS)'.
  • RFC6347: 'Datagram Transport Layer Security Version 1.2'.
  • RFC6367: 'Addition of the Camellia Cipher Suites to Transport Layer Security (TLS)'.
  • RFC6460: 'Suite B Profile for Transport Layer Security (TLS)'.
  • RFC6655: 'AES-CCM Cipher Suites for Transport Layer Security (TLS)'.
  • RFC7027: 'Elliptic Curve Cryptography (ECC) Brainpool Curves for Transport Layer Security (TLS)'.
  • RFC7251: 'AES-CCM Elliptic Curve Cryptography (ECC) Cipher Suites for TLS'.
  • RFC7301: 'Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension'.
  • RFC7366: 'Encrypt-then-MAC for Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)'.
  • RFC7465: 'Prohibiting RC4 Cipher Suites'.
  • RFC7507: 'TLS Fallback Signaling Cipher Suite Value (SCSV) for Preventing Protocol Downgrade Attacks'.
  • RFC7568: 'Deprecating Secure Sockets Layer Version 3.0'.
  • RFC7627: 'Transport Layer Security (TLS) Session Hash and Extended Master Secret Extension'.
  • RFC7685: 'A Transport Layer Security (TLS) ClientHello Padding Extension'.

Encapsulations of TLS include:

  • RFC5216: 'The EAP-TLS Authentication Protocol'

The Beast And Free Dating Websites In Us 2020

Informational RFCs[edit]

  • RFC7457: 'Summarizing Known Attacks on Transport Layer Security (TLS) and Datagram TLS (DTLS)'
  • RFC7525: 'Recommendations for Secure Use of Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)'

See also[edit]

  • Application-Layer Protocol Negotiation – a TLS extension used for SPDY and TLS False Start
  • Bullrun (decryption program) – a secret anti-encryption program run by the U.S. National Security Agency
  • HTTP Strict Transport Security – HSTS
  • Private Communications Technology (PCT) – a historic Microsoft competitor to SSL 2.0
  • QUIC (Quick UDP Internet Connections) – '...was designed to provide security protection equivalent to TLS/SSL'; QUIC's main goal is to improve perceived performance of connection-oriented web applications that are currently using TCP

The Beast And Free Dating Websites In Us 2017

References[edit]

Completely free dating websites
  1. ^Lawrence, Scott; Khare, Rohit (May 2000). 'Upgrading to TLS Within HTTP/1.1'. tools.ietf.org. Retrieved 15 December 2018.
  2. ^'SSL/TLS in Detail'. TechNet. Microsoft Docs. Retrieved 2021-10-24.
  3. ^ abHooper, Howard (2012). CCNP Security VPN 642-648 Official Cert Guide (2 ed.). Cisco Press. p. 22. ISBN9780132966382.
  4. ^ abSpott, Andrew; Leek, Tom; et al. 'What layer is TLS?'. Information Security Stack Exchange.
  5. ^ abT. Dierks, E. Rescorla (August 2008). 'Introduction'. The Transport Layer Security (TLS) Protocol Version 1.2. sec. 1. doi:10.17487/RFC5246. RFC5246.
  6. ^E. Rescorla (August 2008). 'The Transport Layer Security (TLS) Protocol Version 1.3'.
  7. ^ abcdT. Dierks; E. Rescorla (August 2008). 'The Transport Layer Security (TLS) Protocol Version 1.2'. Archived from the original on 2017-12-24.
  8. ^ abcdeBright, Peter (17 October 2018). 'Apple, Google, Microsoft, and Mozilla come together to end TLS 1.0'. Retrieved 17 October 2018.
  9. ^ abcd'Here is what is new and changed in Firefox 74.0 Stable - gHacks Tech News'. www.ghacks.net. 10 March 2020. Retrieved 2020-03-10.
  10. ^ abcd'TLS 1.0 and TLS 1.1 - Chrome Platform Status'. chromestatus.com. Retrieved 2020-03-10.
  11. ^'Creating TLS: The Pioneering Role of Ruth Nelson'.
  12. ^Thomas Y. C. Woo, Raghuram Bindignavle, Shaowen Su and Simon S. Lam, SNP: An interface for secure network programming Proceedings USENIX Summer Technical Conference, June 1994
  13. ^Messmer, Ellen. 'Father of SSL, Dr. Taher Elgamal, Finds Fast-Moving IT Projects in the Middle East'. Network World. Archived from the original on 31 May 2014. Retrieved 30 May 2014.
  14. ^Greene, Tim. 'Father of SSL says despite attacks, the security linchpin has lots of life left'. Network World. Archived from the original on 31 May 2014. Retrieved 30 May 2014.
  15. ^ abOppliger, Rolf (2016). 'Introduction'. SSL and TLS: Theory and Practice (2nd ed.). Artech House. p. 13. ISBN978-1-60807-999-5. Retrieved 2018-03-01 – via Google Books.
  16. ^'THE SSL PROTOCOL'. Netscape Corporation. 2007. Archived from the original on 14 June 1997.
  17. ^Rescorla 2001
  18. ^'POODLE: SSLv3 vulnerability (CVE-2014-3566)'. Archived from the original on 5 December 2014. Retrieved 21 October 2014.
  19. ^'Security Standards and Name Changes in the Browser Wars'. Retrieved 2020-02-29.
  20. ^Laura K. Gray (2015-12-18). 'Date Change for Migrating from SSL and Early TLS'. Payment Card Industry Security Standards Council blog. Retrieved 2018-04-05.
  21. ^Company, Newtek - Your Business Solutions. 'Changes to PCI Compliance are Coming June 30. Is Your Ecommerce Business Ready?'. Forbes. Retrieved 2018-06-20.
  22. ^Dierks, T. & E. Rescorla (April 2006). 'The Transport Layer Security (TLS) Protocol Version 1.1'. RFC4346. Archived from the original on 2017-12-24.
  23. ^ abPolk, Tim; McKay, Terry; Chokhani, Santosh (April 2014). 'Guidelines for the Selection, Configuration, and Use of Transport Layer Security (TLS) Implementations'(PDF). National Institute of Standards and Technology. p. 67. Archived from the original(PDF) on 2014-05-08. Retrieved 2014-05-07.CS1 maint: uses authors parameter (link)
  24. ^'Twitter will deprecate support for TLS 1.0, TLS 1.1 on July 15'. Hashed Out by The SSL Store. 2019-07-12. Retrieved 14 June 2021.
  25. ^Mackie, Kurt. 'Microsoft Delays End of Support for TLS 1.0 and 1.1 -'. Microsoft Certified Professional Magazine Online.
  26. ^'TLS 1.2 FAQ – Knowledge Base'.
  27. ^T. Dierks, E. Rescorla (August 2008). 'Finished'. The Transport Layer Security (TLS) Protocol Version 1.2. sec. 7.4.9. doi:10.17487/RFC5246. RFC5246.
  28. ^'Differences between TLS 1.2 and TLS 1.3 (#TLS13)'. WolfSSL. 18 September 2019. Archived from the original on 19 September 2019. Retrieved 18 September 2019.
  29. ^'NSS 3.29 release notes'. Mozilla Developer Network. February 2017. Archived from the original on 2017-02-22.
  30. ^'Enable TLS 1.3 by default'. Bugzilla@Mozilla. 16 October 2016. Retrieved 10 October 2017.
  31. ^'Firefox — Notes (60.0)'. Mozilla. Retrieved 2018-05-10.
  32. ^'ProxySG, ASG and WSS will interrupt SSL connections when clients using TLS 1.3 access sites also using TLS 1.3'. BlueTouch Online. 16 May 2017. Archived from the original on 12 September 2017. Retrieved 11 September 2017.
  33. ^'TLS 1.3 IETF 100 Hackathon'. Archived from the original on 2018-01-15.
  34. ^ abIETF – Internet Engineering Task Force (2017-11-12), IETF Hackathon Presentations and Awards, archived from the original on 2021-10-28, retrieved 2017-11-14
  35. ^'Hurrah! TLS 1.3 is here. Now to implement it and put it into software'. Retrieved 2018-03-28.
  36. ^IETF - Internet Engineering Task Force (2018-07-15), IETF102-HACKATHON-20180715-1400, archived from the original on 2021-10-28, retrieved 2018-07-18
  37. ^'wolfSSL TLS 1.3 BETA Release Now Available'. info@wolfssl.com. 11 May 2017. Retrieved 11 May 2017.
  38. ^'TLS 1.3 PROTOCOL SUPPORT'. info@wolfssl.com.
  39. ^'TLS 1.3 Draft 28 Support in wolfSSL'. info@wolfssl.com. 14 June 2018. Retrieved 14 June 2018.
  40. ^'OpenSSL 1.1.1 Is Released'. Matt Caswell. 11 Sep 2018. Retrieved 19 Dec 2018.
  41. ^'Protocols in TLS/SSL (Schannel SSP)'. Microsoft Docs. Retrieved 24 November 2021.
  42. ^Hoffman-Andrews, Jacob (2019-02-26). 'ETS Isn't TLS and You Shouldn't Use It'. Electronic Frontier Foundation. Retrieved 2019-02-27.
  43. ^
  44. ^
  45. ^Rea, Scott (2013). 'Alternatives to Certification Authorities for a Secure Web'(PDF). RSA Conference Asia Pacific. Archived(PDF) from the original on 7 October 2016. Retrieved 7 September 2016.
  46. ^Counting SSL certificates; netcraft; May 13, 2015.Archived May 16, 2015, at the Wayback Machine
  47. ^Raymond, Art (3 August 2017). 'Lehi's DigiCert swallows web security competitor in $1 billion deal'. Deseret News. Retrieved 21 May 2020.
  48. ^'Market share trends for SSL certificate authorities'. W3Techs. Retrieved 21 May 2020.
  49. ^Law Enforcement Appliance Subverts SSLArchived 2014-03-15 at the Wayback Machine, Wired, 2010-04-03.
  50. ^New Research Suggests That Governments May Fake SSL CertificatesArchived 2016-01-04 at the Wayback Machine, EFF, 2010-03-24.
  51. ^P. Eronen, Ed. (December 2005). 'Pre-Shared Key Ciphersuites for Transport Layer Security (TLS)'. Internet Engineering Task Force. RFC4279. Archived from the original on 5 September 2013. Retrieved 9 September 2013.Cite journal requires journal= (help)
  52. ^D. Taylor, Ed. 'Using the Secure Remote Password (SRP) Protocol for TLS Authentication'. Internet Engineering Task Force. RFC5054. Archived from the original on December 7, 2014. Retrieved December 21, 2014.
  53. ^Gothard, Peter (31 July 2013). 'Google updates SSL certificates to 2048-bit encryption'. Computing. Incisive Media. Archived from the original on 22 September 2013. Retrieved 9 September 2013.
  54. ^'The value of 2,048-bit encryption: Why encryption key length matters'. SearchSecurity. Archived from the original on 2018-01-16. Retrieved 2017-12-18.
  55. ^Sean Turner (September 17, 2015). 'Consensus: remove DSA from TLS 1.3'. Archived from the original on October 3, 2015.
  56. ^RFC 8422
  57. ^ abcddraft-chudov-cryptopro-cptls-04 – GOST 28147-89 Cipher Suites for Transport Layer Security (TLS)
  58. ^RFC5288, 5289
  59. ^RFC6655, 7251
  60. ^RFC6367
  61. ^RFC5932, 6367
  62. ^ abRFC6209
  63. ^RFC4162
  64. ^'On the Practical (In-)Security of 64-bit Block Ciphers — Collision Attacks on HTTP over TLS and OpenVPN'(PDF). 2016-10-28. Archived(PDF) from the original on 2017-04-24. Retrieved 2017-06-08.
  65. ^'NIST Special Publication 800-57 Recommendation for Key Management — Part 1: General (Revised)'(PDF). 2007-03-08. Archived from the original(PDF) on June 6, 2014. Retrieved 2014-07-03.
  66. ^ abcQualys SSL Labs. 'SSL/TLS Deployment Best Practices'. Archived from the original on 4 July 2015. Retrieved 2 June 2015.
  67. ^RFC8998
  68. ^RFC8998
  69. ^RFC5469
  70. ^RFC7905
  71. ^AEAD Ciphers
  72. ^'Http vs https'. Archived from the original on 2015-02-12. Retrieved 2015-02-12.
  73. ^ abcdAs of October 17, 2021. 'SSL Pulse: Survey of the SSL Implementation of the Most Popular Websites'. Qualys. Retrieved 2021-11-09.
  74. ^ abivanr. 'RC4 in TLS is Broken: Now What?'. Qualsys Security Labs. Archived from the original on 2013-08-27. Retrieved 2013-07-30.
  75. ^ abcBodo Möller, Thai Duong & Krzysztof Kotowicz. 'This POODLE Bites: Exploiting The SSL 3.0 Fallback'(PDF). Archived(PDF) from the original on 2014-10-14. Retrieved 2014-10-15.
  76. ^'What browsers support Extended Validation (EV) and display an EV indicator?'. Symantec. Archived from the original on 2015-12-31. Retrieved 2014-07-28.
  77. ^ abcdefghij'SHA-256 Compatibility'. Archived from the original on 2015-07-01. Retrieved 2015-06-12.
  78. ^ abcdefghijklmnopqrs'ECC Compatibility'. Archived from the original on 2016-02-17. Retrieved 2015-06-13.
  79. ^ ab'Tracking the FREAK Attack'. Archived from the original on 2015-03-06. Retrieved 2015-03-08.
  80. ^ ab'FREAK: Factoring RSA Export Keys'. Archived from the original on 2015-03-11. Retrieved 2015-03-08.
  81. ^Google (2012-05-29). 'Dev Channel Update'. Archived from the original on 2013-03-02. Retrieved 2011-06-01.
  82. ^Google (2012-08-21). 'Stable Channel Update'. Archived from the original on 2012-08-25. Retrieved 2012-08-22.
  83. ^Chromium Project (2013-05-30). 'Chromium TLS 1.2 Implementation'.
  84. ^'The Chromium Project: BoringSSL'. Archived from the original on 2015-09-23. Retrieved 2015-09-05.
  85. ^ ab'Chrome Stable Release'. Chrome Releases. 2011-10-25. Archived from the original on 2015-02-20. Retrieved 2015-02-01.
  86. ^'SVN revision log on Chrome 10.0.648.127 release'. Archived from the original on 2014-06-19. Retrieved 2014-06-19.
  87. ^ ab'ImperialViolet – CRIME'. 2012-09-22. Archived from the original on 2015-01-10. Retrieved 2014-10-18.
  88. ^ ab'SSL/TLS Overview'. 2008-08-06. Archived from the original on 2013-07-03. Retrieved 2013-03-29.
  89. ^ ab'Chromium Issue 90392'. 2008-08-06. Archived from the original on 2013-08-03. Retrieved 2013-06-28.
  90. ^ ab'Issue 23503030 Merge 219882'. 2013-09-03. Archived from the original on 2014-02-26. Retrieved 2013-09-19.
  91. ^ ab'Issue 278370: Unable to submit client certificates over TLS 1.2 from Windows'. 2013-08-23. Archived from the original on 2013-10-05. Retrieved 2013-10-03.
  92. ^Möller, Bodo (2014-10-14). 'This POODLE bites: exploiting the SSL 3.0 fallback'. Google Online Security blog. Google (via Blogspot). Archived from the original on 2014-10-28. Retrieved 2014-10-28.
  93. ^ abc'An update on SSLv3 in Chrome'. Security-dev. 2014-10-31. Retrieved 2014-11-04.
  94. ^'Stable Channel Update'. Mozilla Developer Network. 2014-02-20. Archived from the original on 2014-10-24. Retrieved 2014-11-14.
  95. ^'Changelog for Chrome 33.0.1750.117'. Google. Archived from the original on 2014-01-16. Retrieved 2014-11-14.
  96. ^'Issue 318442: Update to NSS 3.15.3 and NSPR 4.10.2'. Archived from the original on 2015-03-15. Retrieved 2014-11-14.
  97. ^ ab'Issue 693963003: Add minimum TLS version control to about:flags and Finch gate it. – Code Review'. Archived from the original on 2015-04-16. Retrieved 2015-01-22.
  98. ^'Issue 375342: Drop RC4 Support'. Archived from the original on 2015-09-12. Retrieved 2015-05-22.
  99. ^'Issue 436391: Add info on end of life of SSLVersionFallbackMin & SSLVersionMin policy in documentation'. Archived from the original on 2015-04-18. Retrieved 2015-04-19.
  100. ^'Issue 490240: Increase minimum DH size to 1024 bits (tracking bug)'. Archived from the original on 2015-09-12. Retrieved 2015-05-29.
  101. ^ abcdefg'Intent to deprecate: RC4'. Retrieved 2015-12-21.
  102. ^ abcdefg'An update on SHA-1 certificates in Chrome'. 2015-12-18. Archived from the original on 2015-12-18. Retrieved 2015-12-21.
  103. ^ ab'Chrome Enterprise release notes - Google Chrome Enterprise Help'.
  104. ^ abhttps://docs.microsoft.com/en-us/DeployEdge/microsoft-edge-policies#sslversionmin
  105. ^ abcd'Security in Firefox 2'. 2008-08-06. Archived from the original on 2014-07-14. Retrieved 2009-03-31.
  106. ^ ab'Attack against TLS-protected communications'. Mozilla Security Blog. Mozilla. 2011-09-27. Archived from the original on 2015-03-04. Retrieved 2015-02-01.
  107. ^ ab'Introduction to SSL'. MDN. Archived from the original on 2014-07-14. Retrieved 2014-06-19.
  108. ^ ab'NSS 3.15.3 Release Notes'. Mozilla Developer Network. Mozilla. Archived from the original on 2014-06-05. Retrieved 2014-07-13.
  109. ^ ab'MFSA 2013-103: Miscellaneous Network Security Services (NSS) vulnerabilities'. Mozilla. Mozilla. Archived from the original on 2014-07-14. Retrieved 2014-07-13.
  110. ^'Bug 565047 – (RFC4346) Implement TLS 1.1 (RFC 4346)'. Retrieved 2013-10-29.
  111. ^'Bug 480514 – Implement support for TLS 1.2 (RFC 5246)'. Retrieved 2013-10-29.
  112. ^'Bug 733647 – Implement TLS 1.1 (RFC 4346) in Gecko (Firefox, Thunderbird), on by default'. Retrieved 2013-12-04.
  113. ^ ab'Firefox Notes – Desktop'. 2014-02-04. Archived from the original on 2014-02-07. Retrieved 2014-02-04.
  114. ^'Bug 861266 – Implement TLS 1.2 (RFC 5246) in Gecko (Firefox, Thunderbird), on by default'. Retrieved 2013-11-18.
  115. ^ abc'The POODLE Attack and the End of SSL 3.0'. Mozilla blog. Mozilla. 2014-10-14. Archived from the original on 2014-10-18. Retrieved 2014-10-28.
  116. ^'Firefox — Notes (34.0) — Mozilla'. mozilla.org. 2014-12-01. Archived from the original on 2015-04-09. Retrieved 2015-04-03.
  117. ^'Bug 1083058 – A pref to control TLS version fallback'. bugzilla.mozilla.org. Retrieved 2014-11-06.
  118. ^'Bug 1036737 – Add support for draft-ietf-tls-downgrade-scsv to Gecko/Firefox'. bugzilla.mozilla.org. Retrieved 2014-10-29.
  119. ^ abc'Bug 1166031 – Update to NSS 3.19.1'. bugzilla.mozilla.org. Retrieved 2015-05-29.
  120. ^'Bug 1088915 – Stop offering RC4 in the first handshakes'. bugzilla.mozilla.org. Retrieved 2014-11-04.
  121. ^'Firefox — Notes (39.0) — Mozilla'. mozilla.org. 2015-06-30. Archived from the original on 2015-07-03. Retrieved 2015-07-03.
  122. ^'Google, Microsoft, and Mozilla will drop RC4 encryption in Chrome, Edge, IE, and Firefox next year'. VentureBeat. 2015-09-01. Archived from the original on 2015-09-05. Retrieved 2015-09-05.
  123. ^'Intent to ship: RC4 disabled by default in Firefox 44'. Archived from the original on 2011-01-22. Retrieved 2015-10-18.
  124. ^'RC4 is now allowed only on whitelisted sites (Reverted)'. Retrieved 2015-11-02.
  125. ^'Firefox — Notes (44.0) — Mozilla'. mozilla.org. 2016-01-26. Archived from the original on 2016-03-04. Retrieved 2016-03-09.
  126. ^'Bug 1342082 – Disable TLS 1.3 for FF52 Release'. Retrieved 2017-03-29.
  127. ^ ab'Firefox 78.0, See All New Features, Updates and Fixes'.
  128. ^Microsoft (2012-09-05). 'Secure Channel'. Archived from the original on 2012-08-29. Retrieved 2012-10-18.
  129. ^Microsoft (2009-02-27). 'MS-TLSP Appendix A'. Archived from the original on 2013-09-27. Retrieved 2009-03-19.
  130. ^ ab'What browsers only support SSLv2?'. Retrieved 2014-06-19.
  131. ^ abcd'SHA2 and Windows – Windows PKI blog – Site Home – TechNet Blogs'. 2010-09-30. Archived from the original on 2014-07-16. Retrieved 2014-07-29.
  132. ^ abcde'HTTPS Security Improvements in Internet Explorer 7'. Archived from the original on 2013-10-10. Retrieved 2013-10-29.
  133. ^'TLS Cipher Suites'. Microsoft. Archived from the original on 2017-03-13.
  134. ^'Cipher Suites in TLS/SSL (Schannel SSP) - Win32 apps'. Archived from the original on 2015-03-11. Retrieved 2017-07-19.
  135. ^ abcdefgMSRC (2015-03-10). Vulnerability in Schannel Could Allow Security Feature Bypass (3046049). Security Bulletins (Technical report). MS15-031. Retrieved 2021-10-24 – via Microsoft Docs.
  136. ^ abcdefgMSRC (2015-05-12). Vulnerability in Schannel Could Allow Information Disclosure (3061518). Security Bulletins (Technical report). MS15-055. Retrieved 2021-10-24 – via Microsoft Docs.
  137. ^ abcd'Update to add support for TLS 1.1 and TLS 1.2 in Windows Server 2008 SP2, Windows Embedded POSReady 2009, and Windows Embedded Standard 2009'. Retrieved 2017-07-19.
  138. ^ ab'Windows 7 adds support for TLSv1.1 and TLSv1.2 – IEInternals – Site Home – MSDN Blogs'. Archived from the original on 2013-12-26. Retrieved 2013-10-29.
  139. ^Thomlinson, Matt (2014-11-11). 'Hundreds of Millions of Microsoft Customers Now Benefit from Best-in-Class Encryption'. Microsoft Security. Archived from the original on 2014-11-14. Retrieved 2014-11-14.
  140. ^Microsoft security advisory: Update for disabling RC4Archived 2015-03-11 at the Wayback Machine
  141. ^ abcdMicrosoft (2013-09-24). 'IE11 Changes'. Archived from the original on 2013-10-30. Retrieved 2013-11-01.
  142. ^'February 2015 security updates for Internet Explorer'. 2015-02-11. Archived from the original on 2015-02-11. Retrieved 2015-02-11.
  143. ^'Update turns on the setting to disable SSL 3.0 fallback for protected mode sites by default in Internet Explorer 11'. Archived from the original on 2015-02-14. Retrieved 2015-02-11.
  144. ^MSRC (2014-10-14). Vulnerability in SSL 3.0 Could Allow Information Disclosure. Security Advisories (Technical report). 3009008. Retrieved 2021-10-24 – via Microsoft Docs.
  145. ^Microsoft Edge Team (2016-08-09). 'RC4 is now disabled in Microsoft Edge and Internet Explorer 11'. Microsoft. Archived from the original on 2016-08-21.
  146. ^'Internet Explorer 11 for Windows Server 2012 and Windows Embedded 8 Standard'. Microsoft Support. 2019-04-16.
  147. ^ abcde'TLS (Schannel SSP) changes in Windows 10 and Windows Server 2016'. Windows Server. Microsoft Docs. Retrieved 2021-10-24.
  148. ^ ab'Protocols in TLS/SSL (Schannel SSP)'.
  149. ^ abcd'What browsers work with Universal SSL'. Archived from the original on 2016-03-04. Retrieved 2015-06-15.
  150. ^'POODLE SSL vulnerability – secure your Windo... – Windows Phone 8 Development and Hacking'. XDA Developers. Archived from the original on 2016-09-23.
  151. ^ ab'What TLS version is used in Windows Phone 8 for secure HTTP connections?'. Microsoft. Archived from the original on 2016-03-04. Retrieved 2014-11-07.
  152. ^'Qualys SSL Labs – Projects / User Agent Capabilities: Unknown'. Archived from the original on 2017-03-01.
  153. ^ ab'Platform Security'. TechNet. Microsoft Docs. 2014-06-25. Retrieved 2021-10-24.
  154. ^'Release Notes: Important Issues in Windows 8.1 Preview'. TechNet. Microsoft Docs. 2013-06-24. Retrieved 2021-10-24.
  155. ^'W8.1(IE11) vs RC4'. Qualys Community. Archived from the original on 2014-11-04. Retrieved 2014-11-04.
  156. ^Adrian, Dimcev. 'Common browsers/libraries/servers and the associated cipher suites implemented'. TLS Cipher Suites Project. Archived from the original on 2013-04-17.
  157. ^'Features'. Safari. Apple. 2009-06-10. Archived from the original on 2013-04-17. Retrieved 2009-06-10.
  158. ^'Curl: Patch to add TLS 1.1 and 1.2 support & replace deprecated functions in SecureTransport'. Sweden: haxx.se. Archived from the original on 2017-03-01.
  159. ^Qualys SSL Report: google.co.uk Archived 2017-03-20 at the Wayback Machine (simulation Safari 5.1.9 TLS 1.0)
  160. ^'Apple Secures Mac OS X with Mavericks Release'. eSecurity Planet. 2013-10-25. Archived from the original on 2014-07-08. Retrieved 2014-06-23.
  161. ^Ristic, Ivan (2013-09-10). 'Is BEAST Still a Threat?'. Qualys. Archived from the original on 2014-10-12.
  162. ^ abRistić, Ivan (2013-10-31). 'Apple enabled BEAST mitigations in OS X 10.9 Mavericks'. Archived from the original on 2013-11-07. Retrieved 2013-11-07.
  163. ^Ristić, Ivan (2014-02-26). 'Apple finally releases patch for BEAST'. Qualys. Archived from the original on 2014-07-14. Retrieved 2014-07-01.
  164. ^'About Security Update 2014-005'. Apple Support knowledge base article. Apple. Archived from the original on 2014-10-24.
  165. ^'About the security content of iOS 8.1'. Apple Support knowledge base article. Apple. Archived from the original on 2014-10-23.
  166. ^ abc'About Security Update 2015-002'. Apple Support knowledge base article. Apple. Archived from the original on 2015-03-16. Retrieved 2015-03-09.
  167. ^ ab'About the security content of OS X Mavericks v10.9'. Archived from the original on 2014-07-04. Retrieved 2014-06-20.
  168. ^'User Agent Capabilities: Safari 8 / OS X 10.10'. Qualys SSL Labs. Archived from the original on 2015-09-06. Retrieved 2015-03-07.
  169. ^'About the security content of OS X Yosemite v10.10.4 and Security Update 2015-005'. Archived from the original on 2015-07-02. Retrieved 2015-07-03.
  170. ^ abPauly, Tommy (2019-01-29). 'TLS 1.3 in iOS'. tls@ietf.org (Mailing list).
  171. ^ abc'Technical Note TN2287 – iOS 5 and TLS 1.2 Interoperability Issues'. Apple. 2011-10-14. Archived from the original on 2011-09-07. Retrieved 2012-12-10.
  172. ^Liebowitz, Matt (2011-10-13). 'Apple issues huge software security patches'. NBC News. Retrieved 2012-12-10.
  173. ^MWR Info Security (2012-04-16). 'Adventures with iOS UIWebviews'. Archived from the original on 2013-04-17. Retrieved 2012-12-10., section 'HTTPS (SSL/TLS)'
  174. ^'Secure Transport Reference'. Archived from the original on 2014-06-04. Retrieved 2014-06-23.kSSLProtocol2 is deprecated in iOS
  175. ^'iPhone 3.0: Mobile Safari Gets Enhanced Security Certificate Visualization'. The iPhone Blog. 2009-03-31. Archived from the original on 2009-04-03.
  176. ^'Projects / User Agent Capabilities: Safari 7 / iOS 7.1'. Qualys SSL Labs. Archived from the original on 2017-03-13.
  177. ^schurtertom (2013-10-11). 'SOAP Request fails randomly on one Server but works on another on iOS7'. Stack Overflow. Retrieved 2014-01-05.
  178. ^'User Agent Capabilities: Safari 8 / iOS 8.1.2'. Qualys SSL Labs. Archived from the original on 2016-03-04. Retrieved 2015-03-07.
  179. ^'About the security content of iOS 8.2'. Apple Support knowledge base article. Apple. Archived from the original on 2015-03-09. Retrieved 2015-03-09.
  180. ^'About the security content of iOS 8.4'. Archived from the original on 2015-07-03. Retrieved 2015-07-03.
  181. ^'SSLSocket Android Developers'. Archived from the original on 2015-03-18. Retrieved 2015-03-11.
  182. ^ abcd'SSLSocket Android Developers'. Archived from the original on 2016-03-04. Retrieved 2015-12-17.
  183. ^ ab'Android 5.0 Behavior Changes Android Developers'. Archived from the original on 2015-03-09. Retrieved 2015-03-11.
  184. ^'Android 8.0 Behavior Changes'. Archived from the original on 2017-12-01.
  185. ^'Java Secure Socket Extension (JSSE) Reference Guide'. Oracle Help Center. Retrieved 2021-12-24.
  186. ^'Version 1.11.13, 2015-01-11 — Botan'. 2015-01-11. Archived from the original on 2015-01-09. Retrieved 2015-01-16.
  187. ^'[gnutls-devel] GnuTLS 3.4.0 released'. 2015-04-08. Archived from the original on 2015-04-16. Retrieved 2015-04-16.
  188. ^'[gnutls-devel] gnutls 3.6.4'. 2018-09-24. Retrieved 2020-05-18.
  189. ^'Java SE Development Kit 8, Update 31 Release Notes'. Archived from the original on 2015-01-21. Retrieved 2015-01-22.
  190. ^'OpenBSD 5.6 Released'. 2014-11-01. Retrieved 2015-01-20.
  191. ^'LibreSSL 2.3.0 Released'. 2015-09-23. Retrieved 2015-09-24.
  192. ^https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.2.2-relnotes.txt
  193. ^https://github.com/libressl-portable/portable/issues/228
  194. ^'MatrixSSL – News'. Archived from the original on 2015-02-14. Retrieved 2014-11-09.
  195. ^'mbed TLS 2.0.0 released'. 2015-07-10. Archived from the original on 2015-09-25. Retrieved 2015-07-14.
  196. ^'NSS 3.19 release notes'. Mozilla Developer Network. Mozilla. Archived from the original on 2015-06-05. Retrieved 2015-05-06.
  197. ^'NSS 3.14 release notes'. Mozilla Developer Network. Mozilla. Archived from the original on 2013-01-17. Retrieved 2012-10-27.
  198. ^'NSS 3.15.1 release notes'. Mozilla Developer Network. Mozilla. Archived from the original on 2013-09-22. Retrieved 2013-08-10.
  199. ^'NSS 3.39 release notes'. 2018-08-31. Retrieved 2018-09-14.
  200. ^'OpenSSL 1.1.0 Series Release Notes'. Archived from the original on 2016-08-25. Retrieved 2016-10-02.
  201. ^ ab'Major changes between OpenSSL 1.0.0h and OpenSSL 1.0.1 [14 Mar 2012]'. 2012-03-14. Archived from the original on January 20, 2015. Retrieved 2015-01-20.
  202. ^'OpenSSL 1.1.1 Is Released'. 2018-09-11. Retrieved 2018-09-14.
  203. ^TLS cipher suites in Microsoft Windows XP and 2003Archived 2015-01-18 at the Wayback Machine
  204. ^ abSChannel Cipher Suites in Microsoft Windows VistaArchived 2015-01-12 at the Wayback Machine
  205. ^ abcTLS Cipher Suites in SChannel for Windows 7, 2008R2, 8, 2012Archived 2015-03-19 at the Wayback Machine
  206. ^'Microsoft TLS 1.3 Support Reference'. Microsoft. 2020-01-30. Retrieved 2021-01-01.'What's new in Windows 10, version 1909 for IT Pros'. Microsoft. 2020-10-03. Retrieved 2021-01-01.
  207. ^'Protocols in TLS/SSL (Schannel SSP)'. Microsoft. 2020-12-17. Retrieved 2021-01-01.
  208. ^'[wolfssl] wolfSSL 3.6.6 Released'. 2015-08-20. Archived from the original on 2015-10-17. Retrieved 2015-08-25.
  209. ^'TLS 1.3 Protocol Support'. Retrieved 2021-05-15.
  210. ^'NSS 3.24 release notes'. Mozilla Developer Network. Mozilla. Archived from the original on 2016-08-26. Retrieved 2016-06-19.
  211. ^'Technical Note TN2287: iOS 5 and TLS 1.2 Interoperability Issues'. iOS Developer Library. Apple Inc. Archived from the original on 2015-04-03. Retrieved 2012-05-03.
  212. ^Qualys SSL Labs – Projects / User Agent CapabilitiesArchived 2015-09-19 at the Wayback Machine
  213. ^Georgiev, Martin and Iyengar, Subodh and Jana, Suman and Anubhai, Rishita and Boneh, Dan and Shmatikov, Vitaly (2012). The most dangerous code in the world: validating SSL certificates in non-browser software. Proceedings of the 2012 ACM conference on Computer and communications security(PDF). pp. 38–49. ISBN978-1-4503-1651-4. Archived(PDF) from the original on 2017-10-22.CS1 maint: multiple names: authors list (link)
  214. ^'The Use of the SIPS URI Scheme in the Session Initiation Protocol (SIP)'. RFC5630.
  215. ^'Summarizing Known Attacks on Transport Layer Security (TLS) and Datagram TLS (DTLS)'. RFC7457. Archived from the original on 2016-03-04.
  216. ^'CVE – CVE-2009-3555'. Archived from the original on 2016-01-04.
  217. ^Eric Rescorla (2009-11-05). 'Understanding the TLS Renegotiation Attack'. Educated Guesswork. Archived from the original on 2012-02-09. Retrieved 2009-11-27.
  218. ^'SSL_CTX_set_options SECURE_RENEGOTIATION'. OpenSSL Docs. 2010-02-25. Archived from the original on 2010-11-26. Retrieved 2010-11-18.
  219. ^'GnuTLS 2.10.0 released'. GnuTLS release notes. 2010-06-25. Archived from the original on 2012-02-09. Retrieved 2011-07-24.
  220. ^'NSS 3.12.6 release notes'. NSS release notes. 2010-03-03. Archived from the original on March 6, 2012. Retrieved 2011-07-24.
  221. ^A. Langley; N. Modadugu; B. Moeller (2010-06-02). 'Transport Layer Security (TLS) False Start'. Internet Engineering Task Force. IETF. Archived from the original on 2013-09-05. Retrieved 2013-07-31.
  222. ^Gruener, Wolfgang. 'False Start: Google Proposes Faster Web, Chrome Supports It Already'. Archived from the original on 2010-10-07. Retrieved 2011-03-09.
  223. ^Smith, Brian. 'Limited rollback attacks in False Start and Snap Start'. Archived from the original on 2011-05-04. Retrieved 2011-03-09.
  224. ^Dimcev, Adrian. 'False Start'. Random SSL/TLS 101. Archived from the original on 2011-05-04. Retrieved 2011-03-09.
  225. ^Mavrogiannopoulos, Nikos; Vercautern, Frederik; Velichkov, Vesselin; Preneel, Bart (2012). A cross-protocol attack on the TLS protocol. Proceedings of the 2012 ACM conference on Computer and communications security(PDF). pp. 62–72. ISBN978-1-4503-1651-4. Archived(PDF) from the original on 2015-07-06.
  226. ^'SMACK: State Machine AttaCKs'. Archived from the original on 2015-03-12.
  227. ^Goodin, Dan (2015-05-20). 'HTTPS-crippling attack threatens tens of thousands of Web and mail servers'. Ars Technica. Archived from the original on 2017-05-19.
  228. ^Leyden, John (1 March 2016). 'One-third of all HTTPS websites open to DROWN attack'. The Register. Archived from the original on 1 March 2016. Retrieved 2016-03-02.
  229. ^ ab'More than 11 million HTTPS websites imperiled by new decryption attack'. Ars Technica. March 2016. Archived from the original on 2016-03-01. Retrieved 2016-03-02.
  230. ^Thai Duong & Juliano Rizzo (2011-05-13). 'Here Come The ⊕ Ninjas'. Archived from the original on 2014-06-03.
  231. ^Dan Goodin (2011-09-19). 'Hackers break SSL encryption used by millions of sites'. Archived from the original on 2012-02-09.
  232. ^'Y Combinator comments on the issue'. 2011-09-20. Archived from the original on 2013-04-17.
  233. ^'Security of CBC Ciphersuites in SSL/TLS: Problems and Countermeasures'. 2004-05-20. Archived from the original on 2012-06-30.
  234. ^Ristic, Ivan (Sep 10, 2013). 'Is BEAST Still a Threat?'. Archived from the original on 12 October 2014. Retrieved 8 October 2014.
  235. ^Brian Smith (2011-09-30). '(CVE-2011-3389) Rizzo/Duong chosen plaintext attack (BEAST) on SSL/TLS 1.0 (facilitated by websockets -76)'.
  236. ^MSRC (2012-01-10). Vulnerability in SSL/TLS Could Allow Information Disclosure (2643584). Security Bulletins (Technical report). MS12-006. Retrieved 2021-10-24 – via Microsoft Docs.
  237. ^Ristic, Ivan (Oct 31, 2013). 'Apple Enabled BEAST Mitigations in OS X 10.9 Mavericks'. Archived from the original on 12 October 2014. Retrieved 8 October 2014.
  238. ^Dan Goodin (2012-09-13). 'Crack in Internet's foundation of trust allows HTTPS session hijacking'. Ars Technica. Archived from the original on 2013-08-01. Retrieved 2013-07-31.
  239. ^Dennis Fisher (September 13, 2012). 'CRIME Attack Uses Compression Ratio of TLS Requests as Side Channel to Hijack Secure Sessions'. ThreatPost. Archived from the original on September 15, 2012. Retrieved 2012-09-13.
  240. ^ abGoodin, Dan (1 August 2013). 'Gone in 30 seconds: New attack plucks secrets from HTTPS-protected pages'. Ars Technica. Condé Nast. Archived from the original on 3 August 2013. Retrieved 2 August 2013.
  241. ^Leyden, John (2 August 2013). 'Step into the BREACH: New attack developed to read encrypted web data'. The Register. Archived from the original on 5 August 2013. Retrieved 2 August 2013.
  242. ^P. Gutmann (September 2014). 'Encrypt-then-MAC for Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)'. Archived from the original on 2015-05-12.Cite journal requires journal= (help)
  243. ^Langley, Adam (December 8, 2014). 'The POODLE bites again'. Archived from the original on December 8, 2014. Retrieved 2014-12-08.
  244. ^security – Safest ciphers to use with the BEAST? (TLS 1.0 exploit) I've read that RC4 is immune – Server Fault
  245. ^Pouyan Sepehrdad; Serge Vaudenay; Martin Vuagnoux (2011). 'Discovery and Exploitation of New Biases in RC4'. In Alex Biryukov; Guang Gong; Douglas R. Stinson (eds.). Selected Areas in Cryptography: 17th International Workshop, SAC 2010, Waterloo, Ontario, Canada, August 12-13, 2010, Revised Selected Papers. Lecture Notes in Computer Science. 6544. pp. 74–91. doi:10.1007/978-3-642-19574-7_5. ISBN978-3-642-19573-0.
  246. ^Green, Matthew (12 March 2013). 'Attack of the week: RC4 is kind of broken in TLS'. Cryptography Engineering. Archived from the original on March 14, 2013. Retrieved March 12, 2013.
  247. ^Nadhem AlFardan, Dan Bernstein, Kenny Paterson, Bertram Poettering and Jacob Schuldt. 'On the Security of RC4 in TLS'. Royal Holloway University of London. Archived from the original on March 15, 2013. Retrieved March 13, 2013.CS1 maint: multiple names: authors list (link)
  248. ^AlFardan, Nadhem J.; Bernstein, Daniel J.; Paterson, Kenneth G.; Poettering, Bertram; Schuldt, Jacob C. N. (8 July 2013). 'On the Security of RC4 in TLS and WPA'(PDF). Archived(PDF) from the original on 22 September 2013. Retrieved 2 September 2013.Cite journal requires journal= (help)
  249. ^AlFardan, Nadhem J.; Bernstein, Daniel J.; Paterson, Kenneth G.; Poettering, Bertram; Schuldt, Jacob C. N. (15 August 2013). On the Security of RC4 in TLS(PDF). 22nd USENIX Security Symposium. p. 51. Archived(PDF) from the original on 22 September 2013. Retrieved 2 September 2013. Plaintext recovery attacks against RC4 in TLS are feasible although not truly practical
  250. ^Goodin, Dan (15 July 2015). 'Once-theoretical crypto attack against HTTPS now verges on practicality'. Ars Technical. Conde Nast. Archived from the original on 16 July 2015. Retrieved 16 July 2015.
  251. ^'Mozilla Security Server Side TLS Recommended Configurations'. Mozilla. Archived from the original on 2015-01-03. Retrieved 2015-01-03.
  252. ^'Security Advisory 2868725: Recommendation to disable RC4'. Microsoft. 2013-11-12. Archived from the original on 2013-11-18. Retrieved 2013-12-04.
  253. ^'Ending support for the RC4 cipher in Microsoft Edge and Internet Explorer 11'. Microsoft Edge Team. September 1, 2015. Archived from the original on September 2, 2015.
  254. ^Langley, Adam (Sep 1, 2015). 'Intent to deprecate: RC4'.
  255. ^Barnes, Richard (Sep 1, 2015). 'Intent to ship: RC4 disabled by default in Firefox 44'. Archived from the original on 2011-01-22.
  256. ^ abJohn Leyden (1 August 2013). 'Gmail, Outlook.com and e-voting 'pwned' on stage in crypto-dodge hack'. The Register. Archived from the original on 1 August 2013. Retrieved 1 August 2013.
  257. ^'BlackHat USA Briefings'. Black Hat 2013. Archived from the original on 30 July 2013. Retrieved 1 August 2013.
  258. ^Smyth, Ben; Pironti, Alfredo (2013). Truncating TLS Connections to Violate Beliefs in Web Applications. 7th USENIX Workshop on Offensive Technologies (report). Archived from the original on 6 November 2015. Retrieved 15 February 2016.
  259. ^Goodin, Dan (26 July 2016). 'New attack bypasses HTTPS protection on Macs, Windows, and Linux'. Ars Technica. Condé Nast. Archived from the original on 27 July 2016. Retrieved 28 July 2016.
  260. ^Goodin, Dan (August 24, 2016). 'HTTPS and OpenVPN face new attack that can decrypt secret cookies'. Ars Technica. Archived from the original on August 24, 2016. Retrieved August 24, 2016.
  261. ^'Why is it called the 'Heartbleed Bug'?'. The Washington Post. 2014-04-09. Archived from the original on 2014-10-09.
  262. ^'Heartbleed Bug vulnerability [9 April 2014]'. Comodo Group. Archived from the original on 5 July 2014.
  263. ^Bleichenbacher, Daniel (August 2006). 'Bleichenbacher's RSA signature forgery based on implementation error'. Archived from the original on 2014-12-16.
  264. ^'BERserk'. Intel Security: Advanced Threat Research. September 2014. Archived from the original on 2015-01-12.
  265. ^Goodin, Dan (February 19, 2015). 'Lenovo PCs ship with man-in-the-middle adware that breaks HTTPS connections'. Ars Technica. Archived from the original on September 12, 2017. Retrieved December 10, 2017.
  266. ^Valsorda, Filippo (2015-02-20). 'Komodia/Superfish SSL validation is broken'. Filippo.io. Archived from the original on 2015-02-24.
  267. ^ abGoodin, Dan (26 May 2016). ''Forbidden attack' makes dozens of HTTPS Visa sites vulnerable to tampering'. Ars Technica. Archived from the original on 26 May 2016. Retrieved 26 May 2016.
  268. ^Clark Estes, Adam. 'Everything You Need to Know About Cloudbleed, the Latest Internet Security Disaster'. Gizmodo. Archived from the original on 2017-02-25. Retrieved 2017-02-24.
  269. ^Diffie, Whitfield; van Oorschot, Paul C; Wiener, Michael J. (June 1992). 'Authentication and Authenticated Key Exchanges'. Designs, Codes and Cryptography. 2 (2): 107–125. CiteSeerX10.1.1.59.6682. doi:10.1007/BF00124891. S2CID7356608. Archived from the original on 2008-03-13. Retrieved 2008-02-11.
  270. ^Discussion on the TLS mailing list in October 2007Archived 2013-09-22 at the Wayback Machine
  271. ^'Protecting data for the long term with forward secrecy'. Archived from the original on 2013-05-06. Retrieved 2012-11-05.
  272. ^Bernat, Vincent (28 November 2011). 'SSL/TLS & Perfect Forward Secrecy'. Archived from the original on 2012-08-27. Retrieved 2012-11-05.
  273. ^'SSL Labs: Deploying Forward Secrecy'. Qualys.com. 2013-06-25. Archived from the original on 2013-06-26. Retrieved 2013-07-10.
  274. ^Ristic, Ivan (2013-08-05). 'SSL Labs: Deploying Forward Secrecy'. Qualsys. Archived from the original on 2013-09-20. Retrieved 2013-08-31.
  275. ^ abLangley, Adam (27 June 2013). 'How to botch TLS forward secrecy'. imperialviolet.org. Archived from the original on 8 August 2013.
  276. ^ abDaignière, Florent. 'TLS 'Secrets': Whitepaper presenting the security implications of the deployment of session tickets (RFC 5077) as implemented in OpenSSL'(PDF). Matta Consulting Limited. Archived(PDF) from the original on 6 August 2013. Retrieved 7 August 2013.
  277. ^ abDaignière, Florent. 'TLS 'Secrets': What everyone forgot to tell you...'(PDF). Matta Consulting Limited. Archived(PDF) from the original on 5 August 2013. Retrieved 7 August 2013.
  278. ^L.S. Huang; S. Adhikarla; D. Boneh; C. Jackson (2014). 'An Experimental Study of TLS Forward Secrecy Deployments'. IEEE Internet Computing. 18 (6): 43–51. CiteSeerX10.1.1.663.4653. doi:10.1109/MIC.2014.86. S2CID11264303. Archived from the original on 20 September 2015. Retrieved 16 October 2015.
  279. ^'Protecting data for the long term with forward secrecy'. Archived from the original on 2014-02-12. Retrieved 2014-03-07.
  280. ^Hoffman-Andrews, Jacob. 'Forward Secrecy at Twitter'. Twitter. Archived from the original on 2014-02-16. Retrieved 2014-03-07.
  281. ^ abcDurumeric, Zakir; Ma, Zane; Springall, Drew; Barnes, Richard; Sullivan, Nick; Bursztein, Elie; Bailey, Michael; Halderman, J. Alex; Paxson, Vern (5 September 2017). 'The Security Impact of HTTPS Interception'. NDSS Symposium. doi:10.14722/ndss.2017.23456. ISBN978-1-891562-46-4.
  282. ^ abThese certificates are currently X.509, but RFC6091 also specifies the use of OpenPGP-based certificates.
  283. ^'tls - Differences between the terms 'pre-master secret', 'master secret', 'private key', and 'shared secret'?'. Cryptography Stack Exchange. Retrieved 2020-10-01.
  284. ^Chris (2009-02-18). 'vsftpd-2.1.0 released – Using TLS session resume for FTPS data connection authentication'. Scarybeastsecurity. blogspot.com. Archived from the original on 2012-07-07. Retrieved 2012-05-17.
  285. ^Valsorda, Filippo (23 September 2016). 'An overview of TLS 1.3 and Q&A'. The Cloudflare Blog.
  286. ^Wildcard SSL Certificate overview, archived from the original on 2015-06-23, retrieved 2015-07-02
  287. ^Named-based SSL virtual hosts: how to tackle the problem(PDF), archived(PDF) from the original on 2012-08-03, retrieved 2012-05-17

Further reading[edit]

Wikimedia Commons has media related to SSL and TLS.
  • Wagner, David; Schneier, Bruce (November 1996). 'Analysis of the SSL 3.0 Protocol'(PDF). The Second USENIX Workshop on Electronic Commerce Proceedings. USENIX Press. pp. 29–40.
  • Eric Rescorla (2001). SSL and TLS: Designing and Building Secure Systems. United States: Addison-Wesley Pub Co. ISBN978-0-201-61598-2.
  • Stephen A. Thomas (2000). SSL and TLS essentials securing the Web. New York: Wiley. ISBN978-0-471-38354-3.
  • Bard, Gregory (2006). 'A Challenging But Feasible Blockwise-Adaptive Chosen-Plaintext Attack on SSL'. International Association for Cryptologic Research (136). Retrieved 2011-09-23.
  • Canvel, Brice. 'Password Interception in a SSL/TLS Channel'. Retrieved 2007-04-20.
  • IETF Multiple Authors. 'RFC of change for TLS Renegotiation'. Retrieved 2009-12-11.
  • Creating VPNs with IPsec and SSL/TLS Linux Journal article by Rami Rosen
  • Joshua Davies (2010). Implementing SSL/TLS. Wiley. ISBN978-0470920411.
  • Polk, Tim; McKay, Kerry; Chokhani, Santosh (April 2014). 'Guidelines for the Selection, Configuration, and Use of Transport Layer Security (TLS) Implementations'(PDF). National Institute of Standards and Technology. Archived from the original(PDF) on 2014-05-08. Retrieved 2014-05-07.
  • Abdou, AbdelRahman; van Oorschot, Paul (August 2017). 'Server Location Verification (SLV) and Server Location Pinning: Augmenting TLS Authentication'. Transactions on Privacy and Security. ACM. 21 (1): 1:1–1:26. doi:10.1145/3139294. S2CID5869541.

External links[edit]

Retrieved from 'https://en.wikipedia.org/w/index.php?title=Transport_Layer_Security&oldid=1061796882'