tls

18
Transport Layer Security 1 Transport Layer Security Transport Layer Security (TLS) and its predecessor, Secure Sockets Layer (SSL), are cryptographic protocols that provide communication security over the Internet. [1] TLS and SSL encrypt the segments of network connections at the Transport Layer, using asymmetric cryptography for key exchange, symmetric encryption for privacy, and message authentication codes for message integrity. Several versions of the protocols are in widespread use in applications such as web browsing, electronic mail, Internet faxing, instant messaging and voice-over-IP (VoIP). TLS is an IETF standards track protocol, last updated in RFC 5246, and is based on the earlier SSL specifications developed by Netscape Communications. [2] Description The TLS protocol allows client-server applications to communicate across a network in a way designed to prevent eavesdropping and tampering. Since most protocols can be used either with or without TLS (or SSL) it is necessary to indicate to the server whether the client is making a TLS connection or not. There are two main ways of achieving this, one option is to use a different port number for TLS connections (for example port 443 for HTTPS). The other is to use the regular port number and have the client request that the server switch the connection to TLS using a protocol specific mechanism (for example STARTTLS for mail and news protocols). Once the client and server have decided to use TLS they negotiate a stateful connection by using a handshaking procedure. [3] During this handshake, the client and server agree on various parameters used to establish the connection's security. The client sends the server the client's SSL version number, cipher settings, session-specific data, and other information that the server needs to communicate with the client using SSL. The server sends the client the server's SSL version number, cipher settings, session-specific data, and other information that the client needs to communicate with the server over SSL. The server also sends its own certificate, and if the client is requesting a server resource that requires client authentication, the server requests the client's certificate. The client uses the information sent by the server to authenticate the server (see Server Authentication for details). If the server cannot be authenticated, the user is warned of the problem and informed that an encrypted and authenticated connection cannot be established. If the server can be successfully authenticated, the client proceeds to step 4. Using all data generated in the handshake thus far, the client (with the cooperation of the server, depending on the cipher being used) creates the pre-master secret for the session, encrypts it with the server's public key (obtained from the server's certificate, sent in step 2), and then sends the encrypted pre-master secret to the server. If the server has requested client authentication (an optional step in the handshake), the client also signs another piece of data that is unique to this handshake and known by both the client and server. In this case, the client sends both the signed data and the client's own certificate to the server along with the encrypted pre-master secret. If the server has requested client authentication, the server attempts to authenticate the client (see Client Authentication for details). If the client cannot be authenticated, the session ends. If the client can be successfully authenticated, the server uses its private key to decrypt the pre-master secret, and then performs a series of steps (which the client also performs, starting from the same pre-master secret) to generate the master secret. Both the client and the server use the master secret to generate the session keys, which are symmetric keys used to encrypt and decrypt information exchanged during the SSL session and to verify its integrity (that is, to detect any

Upload: asd666dsa

Post on 27-Oct-2014

219 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: tls

Transport Layer Security 1

Transport Layer SecurityTransport Layer Security (TLS) and its predecessor, Secure Sockets Layer (SSL), are cryptographic protocolsthat provide communication security over the Internet.[1] TLS and SSL encrypt the segments of network connectionsat the Transport Layer, using asymmetric cryptography for key exchange, symmetric encryption for privacy, andmessage authentication codes for message integrity.Several versions of the protocols are in widespread use in applications such as web browsing, electronic mail,Internet faxing, instant messaging and voice-over-IP (VoIP).TLS is an IETF standards track protocol, last updated in RFC 5246, and is based on the earlier SSL specificationsdeveloped by Netscape Communications.[2]

DescriptionThe TLS protocol allows client-server applications to communicate across a network in a way designed to preventeavesdropping and tampering.Since most protocols can be used either with or without TLS (or SSL) it is necessary to indicate to the server whetherthe client is making a TLS connection or not. There are two main ways of achieving this, one option is to use adifferent port number for TLS connections (for example port 443 for HTTPS). The other is to use the regular portnumber and have the client request that the server switch the connection to TLS using a protocol specific mechanism(for example STARTTLS for mail and news protocols).Once the client and server have decided to use TLS they negotiate a stateful connection by using a handshakingprocedure.[3] During this handshake, the client and server agree on various parameters used to establish theconnection's security.•• The client sends the server the client's SSL version number, cipher settings, session-specific data, and other

information that the server needs to communicate with the client using SSL.•• The server sends the client the server's SSL version number, cipher settings, session-specific data, and other

information that the client needs to communicate with the server over SSL. The server also sends its owncertificate, and if the client is requesting a server resource that requires client authentication, the server requeststhe client's certificate.

•• The client uses the information sent by the server to authenticate the server (see Server Authentication for details).If the server cannot be authenticated, the user is warned of the problem and informed that an encrypted andauthenticated connection cannot be established. If the server can be successfully authenticated, the client proceedsto step 4.

•• Using all data generated in the handshake thus far, the client (with the cooperation of the server, depending on thecipher being used) creates the pre-master secret for the session, encrypts it with the server's public key (obtainedfrom the server's certificate, sent in step 2), and then sends the encrypted pre-master secret to the server.

•• If the server has requested client authentication (an optional step in the handshake), the client also signs anotherpiece of data that is unique to this handshake and known by both the client and server. In this case, the clientsends both the signed data and the client's own certificate to the server along with the encrypted pre-master secret.

•• If the server has requested client authentication, the server attempts to authenticate the client (see ClientAuthentication for details). If the client cannot be authenticated, the session ends. If the client can be successfullyauthenticated, the server uses its private key to decrypt the pre-master secret, and then performs a series of steps(which the client also performs, starting from the same pre-master secret) to generate the master secret.

•• Both the client and the server use the master secret to generate the session keys, which are symmetric keys used toencrypt and decrypt information exchanged during the SSL session and to verify its integrity (that is, to detect any

Page 2: tls

Transport Layer Security 2

changes in the data between the time it was sent and the time it is received over the SSL connection).•• The client sends a message to the server informing it that future messages from the client will be encrypted with

the session key. It then sends a separate (encrypted) message indicating that the client portion of the handshake isfinished.

•• The server sends a message to the client informing it that future messages from the server will be encrypted withthe session key. It then sends a separate (encrypted) message indicating that the server portion of the handshake isfinished.

•• The SSL handshake is now complete and the session begins. The client and the server use the session keys toencrypt and decrypt the data they send to each other and to validate its integrity.

• This is the normal operation condition of the secure channel. At any time, due to internal or external stimulus(either automation or user intervention), either side may renegotiate the connection, in which case, the processrepeats itself.[4]

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

History and development

Secure Network Programming APIEarly research efforts toward transport layer security included the Secure Network Programming (SNP)application programming interface (API), which in 1993 explored the approach of having a secure transport layerAPI closely resembling Berkeley sockets, to facilitate retrofitting preexisting network applications with securitymeasures.[5]

SSL 1.0, 2.0 and 3.0The SSL protocol was originally developed by Netscape.[6] Version 1.0 was never publicly released; version 2.0 wasreleased in February 1995 but "contained a number of security flaws which ultimately led to the design of SSLversion 3.0".[7] SSL version 3.0, released in 1996, was a complete redesign of the protocol produced by Paul Kocherworking with Netscape engineers Phil Karlton and Alan Freier. Newer versions of SSL/TLS are based on SSL 3.0.The 1996 draft of SSL 3.0 was published by IETF as a historic document in RFC 6101.

TLS 1.0TLS 1.0 was first defined in RFC 2246 in January 1999 as an upgrade to SSL Version 3.0. As stated in the RFC, "thedifferences between this protocol and SSL 3.0 are not dramatic, but they are significant enough that TLS 1.0 andSSL 3.0 do not interoperate." TLS 1.0 does include a means by which a TLS implementation can downgrade theconnection to SSL 3.0, thus weakening security.On September 23, 2011 researchers Thai Duong and Juliano Rizzo demonstrated a "proof of concept" called BEAST(Browser Exploit Against SSL/TLS) using a Java Applet to violate same origin policy constraints, for along-known Cipher block chaining (CBC) vulnerability in TLS 1.0.[8][9] Practical exploits had not been previouslydemonstrated for this vulnerability, which was originally discovered by Phillip Rogaway[10] in 2002.Mozilla updated the development versions of their NSS libraries to mitigate BEAST-like attacks. NSS is used byMozilla Firefox and Google Chrome to implement SSL. Some web servers that have a broken implementation of theSSL specification may stop working as a result.[11]

Microsoft released Security Bulletin MS12-006 on January 10, 2012, which fixed the BEAST vulnerability bychanging the way that the Windows Secure Channel (SChannel) component transmits encrypted network packets.[12]

Page 3: tls

Transport Layer Security 3

As a work-around, the BEAST attack can also be prevented by removing all CBC ciphers from one's list of allowedciphers—leaving only the RC4 cipher, which is still widely supported on most websites.[13][14] Users of Windows 7and Windows Server 2008 R2 can enable use of TLS 1.1 and 1.2, but this work-around will fail if it is not supportedby the other end of the connection and will result in a fall-back to TLS 1.0.

TLS 1.1TLS 1.1 was defined in RFC 4346 in April 2006.[15] It is an update from TLS version 1.0. Significant differences inthis 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.

TLS 1.2TLS 1.2 was defined in RFC 5246 in August 2008. It is based on the earlier TLS 1.1 specification. Major differencesinclude:• 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 is still truncated to96-bits.

• The MD5-SHA-1 combination in the digitally signed element was replaced with a single hash negotiated duringhandshake, defaults to SHA-1.

•• Enhancement in the client's and server's ability to specify which hash and signature algorithms they will accept.• Expansion of support for authenticated encryption ciphers, used mainly for Galois/Counter Mode (GCM) and

CCM mode of Advanced Encryption Standard encryption.• TLS Extensions definition and Advanced Encryption Standard CipherSuites were added.TLS 1.2 was further refined in RFC 6176 in March 2011 redacting its backward compatibility with SSL such thatTLS sessions will never negotiate the use of Secure Sockets Layer (SSL) version 2.0.

ApplicationsIn applications design, TLS is usually implemented on top of any of the Transport Layer protocols, encapsulating theapplication-specific protocols such as HTTP, FTP, SMTP, NNTP and XMPP. Historically it has been used primarilywith reliable transport protocols such as the Transmission Control Protocol (TCP). However, it has also beenimplemented with datagram-oriented transport protocols, such as the User Datagram Protocol (UDP) and theDatagram Congestion Control Protocol (DCCP), usage which has been standardized independently using the termDatagram Transport Layer Security (DTLS).A prominent use of TLS is for securing World Wide Web traffic carried by HTTP to form HTTPS. Notableapplications are electronic commerce and asset management. Increasingly, the Simple Mail Transfer Protocol(SMTP) is also protected by TLS. These applications use public key certificates to verify the identity of endpoints.TLS can also be used to tunnel an entire network stack to create a VPN, as is the case with OpenVPN. Many vendorsnow marry TLS's encryption and authentication capabilities with authorization. There has also been substantialdevelopment since the late 1990s in creating client technology outside of the browser to enable support forclient/server applications. When compared against traditional IPsec VPN technologies, TLS has some inherentadvantages in firewall and NAT traversal that make it easier to administer for large remote-access populations.

Page 4: tls

Transport Layer Security 4

TLS is also a standard method to protect Session Initiation Protocol (SIP) application signaling. TLS can be used toprovide authentication and encryption of the SIP signaling associated with VoIP and other SIP-based applications.

SecurityTLS has a variety of security measures:•• Protection against a downgrade of the protocol to a previous (less secure) version or a weaker cipher suite.• Numbering subsequent Application records with a sequence number and using this sequence number in the

message authentication codes (MACs).• Using a message digest enhanced with a key (so only a key-holder can check the MAC). The HMAC construction

used by most TLS cipher suites is specified in RFC 2104 (SSL 3.0 used a different hash-based MAC).•• The message that ends the handshake ("Finished") sends a hash of all the exchanged handshake messages seen by

both parties.• The pseudorandom function splits the input data in half and processes each one with a different hashing algorithm

(MD5 and SHA-1), then XORs them together to create the MAC. This provides protection even if one of thesealgorithms is found to be vulnerable. TLS only.

•• SSL 3.0 improved upon SSL 2.0 by adding SHA-1 based ciphers and support for certificate authentication.From a security standpoint, SSL 3.0 should be considered less desirable than TLS 1.0. The SSL 3.0 cipher suiteshave a weaker key derivation process; half of the master key that is established is fully dependent on the MD5 hashfunction, which is not resistant to collisions and is, therefore, not considered secure. Under TLS 1.0, the master keythat is established depends on both MD5 and SHA-1 so its derivation process is not currently considered weak. It isfor this reason that SSL 3.0 implementations cannot be validated under FIPS 140-2.[16]

A vulnerability of the renegotiation procedure was discovered in August 2009 that can lead to plaintext injectionattacks against SSL 3.0 and all current versions of TLS. For example, it allows an attacker who can hijack an httpsconnection to splice their own requests into the beginning of the conversation the client has with the web server. Theattacker can't actually decrypt the client-server communication, so it is different from a typical man-in-the-middleattack. A short-term fix is for web servers to stop allowing renegotiation, which typically will not require otherchanges unless client certificate authentication is used. To fix the vulnerability, a renegotiation indication extensionwas proposed for TLS. It will require the client and server to include and verify information about previoushandshakes in any renegotiation handshakes.[17] This extension has become a proposed standard and has beenassigned the number RFC 5746. The RFC has been implemented in recent OpenSSL[18] and other libraries.[19][20]

There are some attacks against the implementation rather than the protocol itself:[21]

• In the earlier implementations, some CAs[22] did not explicitly set basicConstraints CA=FALSE for leaf nodes.As a result, these leaf nodes could sign rogue certificates. In addition, some early software (including IE6 andKonqueror) did not check this field altogether. This can be exploited for man-in-the-middle attack on all potentialSSL connections.

• Some implementations (including older versions of Microsoft Cryptographic API, Network Security Services andGnuTLS) stop reading any characters that follow the null character in the name field of the certificate, which canbe exploited to fool the client into reading the certificate as if it were one that came from the authentic site, e.g.paypal.com\0.badguy.com would be mistaken as the site of paypal.com rather than badguy.com.

• Browsers implemented SSL/TLS protocol version fallback mechanisms for compatibility reasons. The protectionoffered by the SSL/TLS protocols against a downgrade to a previous version by an active MITM attack can berendered useless by such mechanisms.[23]

SSL 2.0 is flawed in a variety of ways:•• Identical cryptographic keys are used for message authentication and encryption.

Page 5: tls

Transport Layer Security 5

•• SSL 2.0 has a weak MAC construction that uses the MD5 hash function with a secret prefix, making it vulnerableto length extension attacks.

• SSL 2.0 does not have any protection for the handshake, meaning a man-in-the-middle downgrade attack can goundetected.

•• SSL 2.0 uses the TCP connection close to indicate the end of data. This means that truncation attacks are possible:the attacker simply forges a TCP FIN, leaving the recipient unaware of an illegitimate end of data message (SSL3.0 fixes this problem by having an explicit closure alert).

•• SSL 2.0 assumes a single service and a fixed domain certificate, which clashes with the standard feature of virtualhosting in Web servers. This means that most websites are practically impaired from using SSL.

SSL 2.0 is disabled by default, beginning with Internet Explorer 7,[24] Mozilla Firefox 2,[25] Opera and Safari. Afterit sends a TLS ClientHello, if Mozilla Firefox finds that the server is unable to complete the handshake, it willattempt to fall back to using SSL 3.0 with an SSL 3.0 ClientHello in SSL 2.0 format to maximize the likelihood ofsuccessfully handshaking with older servers.[26] Support for SSL 2.0 (and weak 40-bit and 56-bit ciphers) has beenremoved completely from Opera as of version 9.5.[27]

Modifications to the original protocols, like False Start (adopted and enabled by Google Chrome[28]) or Snap Start,have been reported to introduce limited TLS protocol version rollback attacks[29] or to allow modifications to thecipher suite list sent by the client to the server (an attacker may be able influence the cipher suite selection in anattempt to downgrade the cipher suite strength, to use either a weaker symmetric encryption algorithm or a weakerkey exchange[30]).

TLS handshake in detailThe TLS protocol exchanges records, which encapsulate the data to be exchanged. Each record can be compressed,padded, appended with a message authentication code (MAC), or encrypted, all depending on the state of theconnection. Each record has a content type field that specifies the record, a length field and a TLS version field.When the connection starts, the record encapsulates another protocol — the handshake messaging protocol — whichhas content type 22.

Simple TLS handshake

A simple connection example follows, illustrating a handshake where the server (but not the client) is authenticatedby its certificate:1.1. Negotiation phase:

• A client sends a ClientHello message specifying the highest TLS protocol version it supports, a randomnumber, a list of suggested CipherSuites and suggested compression methods. If the client is attempting toperform a resumed handshake, it may send a session ID.

• The server responds with a ServerHello message, containing the chosen protocol version, a random number,CipherSuite and compression method from the choices offered by the client. To confirm or allow resumedhandshakes the server may send a session ID. The chosen protocol version should be the highest that both theclient and server support. For example, if the client supports TLS1.1 and the server supports TLS1.2, TLS1.1should be selected; SSL 3.0 should not be selected.

• The server sends its Certificate message (depending on the selected cipher suite, this may be omitted by theserver).[31]

• 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 publickey of the server certificate.

Page 6: tls

Transport Layer Security 6

• The client and server then use the random numbers and PreMasterSecret to compute a common secret, calledthe "master secret". All other key data for this connection is derived from this master secret (and the client- andserver-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 nowon will be authenticated (and encrypted if encryption parameters were present in the server certificate)." TheChangeCipherSpec is itself a record-level protocol with content type of 20.• Finally, 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 torndown.

3. Finally, the server sends a ChangeCipherSpec, telling the client, "Everything I tell you from now on will beauthenticated (and encrypted, if encryption was negotiated)."• The server sends its authenticated and encrypted Finished message.•• The client performs the same decryption and verification.

4. Application phase: at this point, the "handshake" is complete and the application protocol is enabled, with contenttype of 23. Application messages exchanged between client and server will also be authenticated and optionallyencrypted exactly like in their Finished message. Otherwise, the content type will return 25 and the client will notauthenticate.

Client-authenticated TLS handshake

The following full example shows a client being authenticated (in addition to the server like above) via TLS usingcertificates exchanged between both peers.1.1. Negotiation Phase:

• A client sends a ClientHello message specifying the highest TLS protocol version it supports, a randomnumber, 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 asession 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 theserver).[31]

• The server requests a certificate from the client, so that the connection can be mutually authenticated, using aCertificateRequest message.

• 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 keyof the server certificate.

• The client sends a CertificateVerify message, which is a signature over the previous handshake messagesusing the client's certificate's private key. This signature can be verified by using the client's certificate's publickey. This lets the server know that the client has access to the private key of the certificate and thus owns thecertificate.

• The client and server then use the random numbers and PreMasterSecret to compute a common secret, calledthe "master secret". All other key data for this connection is derived from this master secret (and the client- andserver-generated random values), which is passed through a carefully designed pseudorandom function.

Page 7: tls

Transport Layer Security 7

2. The client now sends a ChangeCipherSpec record, essentially telling the server, "Everything I tell you from nowon will be authenticated (and encrypted if encryption was negotiated)." The ChangeCipherSpec is itself arecord-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 torndown.

3. Finally, the server sends a ChangeCipherSpec, telling the client, "Everything I tell you from now on will beauthenticated (and encrypted if encryption was negotiated)."• The server sends its own encrypted Finished message.•• The client performs the same decryption and verification.

4. Application phase: at this point, the "handshake" is complete and the application protocol is enabled, with contenttype of 23. Application messages exchanged between client and server will also be encrypted exactly like in theirFinished message. The application will never again return TLS encryption information without a type 32 apology.

Resumed TLS handshake

Public key operations (e.g., RSA) are relatively expensive in terms of computational power. TLS provides a secureshortcut in the handshake mechanism to avoid these operations. In an ordinary full handshake, the server sends asession id as part of the ServerHello message. The client associates this session id with the server's IP address andTCP port, so that when the client connects again to that server, it can use the session id to shortcut the handshake. Inthe server, the session id maps to the cryptographic parameters previously negotiated, specifically the "mastersecret". Both sides must have the same "master secret" or the resumed handshake will fail (this prevents aneavesdropper from using a session id). The random data in the ClientHello and ServerHello messages virtuallyguarantee that the generated connection keys will be different than in the previous connection. In the RFCs, this typeof handshake is called an abbreviated handshake. It is also described in the literature as a restart handshake.1.1. Negotiation phase:

• A client sends a ClientHello message specifying the highest TLS protocol version it supports, a randomnumber, a list of suggested cipher suites and compression methods. Included in the message is the session idfrom 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 thesession id sent by the client, it responds with the same session id. The client uses this to recognize that aresumed handshake is being performed. If the server does not recognize the session id sent by the client, itsends 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 beused for this connection.

2. The server now sends a ChangeCipherSpec record, essentially telling the client, "Everything I tell you from nowon 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 torndown.

3. Finally, the client sends a ChangeCipherSpec, telling the server, "Everything I tell you from now on will beencrypted."

Page 8: tls

Transport Layer Security 8

• The client sends its own encrypted Finished message.•• The server performs the same decryption and verification.

4. Application phase: at this point, the "handshake" is complete and the application protocol is enabled, with contenttype of 23. Application messages exchanged between client and server will also be encrypted exactly like in theirFinished message.

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

TLS record protocolThis is the general format of all TLS records.

+ Byte +0 Byte +1 Byte +2 Byte +3

Byte0

Content type

Bytes1..4

Version Length

(Major) (Minor) (bits 15..8) (bits 7..0)

Bytes5..(m-1)

Protocol message(s)

Bytesm..(p-1)

MAC (optional)

Bytesp..(q-1)

Padding (block ciphers only)

Content typeThis field identifies the Record Layer Protocol Type contained in this Record.

Content types

Hex Dec Type

0x14 20 ChangeCipherSpec

0x15 21 Alert

0x16 22 Handshake

0x17 23 Application

VersionThis field identifies the major and minor version of TLS for the contained message. For a ClientHellomessage, this need not be the highest version supported by the client.

Page 9: tls

Transport Layer Security 9

Versions

MajorVersion

MinorVersion

Version Type

3 0 SSL 3.0

3 1 TLS 1.0

3 2 TLS 1.1

3 3 TLS 1.2

LengthThe length of Protocol message(s), 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 thestate of the connection.

MAC and PaddingA message authentication code computed over the Protocol message, 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 can be present at end of TLS records before all cipher algorithms and parameters havebeen negotiated and handshaked and then confirmed by sending a CipherStateChange record (see below) forsignalling that these parameters will take effect in all further records sent by the same peer.

Handshake protocolMost messages exchanged during the setup of the TLS session are based on this record, unless an error or warningoccurs and needs to be signalled by an Alert protocol record (see below), or the encryption mode of the session ismodified by another record (see ChangeCipherSpec protocol below).

+ Byte +0 Byte +1 Byte +2 Byte +3

Byte0

22

Bytes1..4

Version Length

(Major) (Minor) (bits 15..8) (bits 7..0)

Bytes5..8

Message type Handshake message data length

(bits 23..16) (bits 15..8) (bits 7..0)

Bytes9..(n-1)

Handshake message data

Bytesn..(n+3)

Message type Handshake message data length

(bits 23..16) (bits 15..8) (bits 7..0)

Bytes(n+4)..

Handshake message data

Message typeThis field identifies the Handshake message type.

Page 10: tls

Transport Layer Security 10

Message Types

Code Description

0 HelloRequest

1 ClientHello

2 ServerHello

11 Certificate

12 ServerKeyExchange

13 CertificateRequest

14 ServerHelloDone

15 CertificateVerify

16 ClientKeyExchange

20 Finished

Handshake message data lengthThis 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 protocolThis record should normally not be sent during normal handshaking or application exchanges. However, thismessage can be sent at any time during the handshake and up to the closure of the session. If this is used to signal afatal error, the session will be closed immediately after sending this record, so this record is used to give a reason forthis closure. If the alert level is flagged as a warning, the remote can decide to close the session if it decides that thesession is not reliable enough for its needs (before doing so, the remote may also send its own signal).

+ Byte +0 Byte +1 Byte +2 Byte +3

Byte0

21

Bytes1..4

Version Length

(Major) (Minor) 0 2

Bytes5..6

Level Description

Bytes7..(p-1)

MAC (optional)

Bytesp..(q-1)

Padding (block ciphers only)

LevelThis 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 closingthe session itself immediately after sending it. The use of Alert records is optional, however if it is missingbefore 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

Page 11: tls

Transport Layer Security 11

layer is useful to prevent or detect attacks (like attempts to truncate the securely transported data, if itintrinsically does not have a predetermined length or duration that the recipient of the secured data mayexpect).

Alert level types

Code Level type Connection state

1 warning connection or security may be unstable.

2 fatal connection or security may be compromised, or an unrecoverable error has occurred.

DescriptionThis field identifies which type of alert is being sent.

Alert description types

Code Description Level types Note

0 Close notify warning/fatal

10 Unexpected message fatal

20 Bad record MAC fatal Possibly a bad SSL implementation, or payload has been tampered with e.g. FTPfirewall rule on FTPS server.

21 Decryption failed fatal TLS only, reserved

22 Record overflow fatal TLS only

30 Decompression failure fatal

40 Handshake failure fatal

41 No certificate warning/fatal SSL 3.0 only, reserved

42 Bad certificate warning/fatal

43 Unsupported certificate warning/fatal E.g. certificate has only Server authentication usage enabled and is presented as aclient certificate

44 Certificate revoked warning/fatal

45 Certificate expired warning/fatal Check server certificate expire also check no certificate in the chain presented hasexpired

46 Certificate unknown warning/fatal

47 Illegal parameter fatal

48 Unknown CA (Certificateauthority)

fatal TLS only

49 Access denied fatal TLS only - E.g. no client certificate has been presented (TLS: Blank certificatemessage or SSLv3: No Certificate alert), but server is configured to require one.

50 Decode error fatal TLS only

51 Decrypt error warning/fatal TLS only

60 Export restriction fatal TLS only, reserved

70 Protocol version fatal TLS only

71 Insufficient security fatal TLS only

80 Internal error fatal TLS only

90 User cancelled fatal TLS only

Page 12: tls

Transport Layer Security 12

100 No renegotiation warning TLS only

110 Unsupported extension warning TLS only

111 Certificate unobtainable warning TLS only

112 Unrecognized name warning TLS only; client's Server Name Indicator specified a hostname not supported by theserver

113 Bad certificate status response fatal TLS only

114 Bad certificate hash value fatal TLS only

115 Unknown PSK identity (used inTLS-PSK and TLS-SRP)

fatal TLS only

ChangeCipherSpec protocol

+ Byte +0 Byte +1 Byte +2 Byte +3

Byte0

20

Bytes1..4

Version Length

(Major) (Minor) 0 1

Byte5

CCS protocol type

CCS protocol typeCurrently only 1.

Application protocol

+ Byte +0 Byte +1 Byte +2 Byte +3

Byte0

23

Bytes1..4

Version Length

(Major) (Minor) (bits 15..8) (bits 7..0)

Bytes5..(m-1)

Application data

Bytesm..(p-1)

MAC (optional)

Bytesp..(q-1)

Padding (block ciphers only)

LengthLength of Application data (excluding the protocol header and including the MAC and padding trailers)

MAC20 bytes for the SHA-1-based HMAC, 16 bytes for the MD5-based HMAC.

PaddingVariable length ; last byte contains the padding length.

Page 13: tls

Transport Layer Security 13

Support for name-based virtual serversFrom the application protocol point of view, TLS belongs to a lower layer, although the TCP/IP model is too coarseto show it. This means that the TLS handshake is usually (except in the STARTTLS case) performed before theapplication protocol can start. The name-based virtual server feature being provided by the application layer, allco-hosted virtual servers share the same certificate because the server has to select and send a certificate immediatelyafter the ClientHello message. This is a big problem in hosting environments because it means either sharing thesame 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. 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.[33]

•• Add every virtual host name in the subjectAltName extension. The major problem being that the certificate needsto be reissued whenever a new virtual server is added.

In order to provide the server name, RFC 4366 Transport Layer Security (TLS) Extensions allow clients to include aServer Name Indication extension (SNI) in the extended ClientHello message. This extension hints the serverimmediately which name the client wishes to connect to, so the server can select the appropriate certificate to send tothe client.

ImplementationsSSL and TLS have been widely implemented in several free and open source software projects. Programmers mayuse the PolarSSL, CyaSSL, OpenSSL, NSS, or GnuTLS libraries for SSL/TLS functionality. Microsoft Windowsincludes an implementation of SSL and TLS as part of its Secure Channel package. Delphi programmers may use alibrary called Indy. Comparison of TLS Implementations provides a brief comparison of features of differentimplementations.

Browser implementationsAll the most recent web browsers support TLS:• Apple's Safari supports TLS, but it’s not officially specified which version.[34] On operating systems (Safari uses

the TLS implementation of the underlying OS) like Mac OS X 10.5.8, Mac OS X 10.6.6, Windows XP, WindowsVista or Windows 7, Safari 5 has been reported to support TLS 1.0.[35]

• Mozilla Firefox, versions 2 and above, support TLS 1.0.[36] As of January 2012 Firefox does not support TLS 1.1or 1.2.[37]

• Microsoft Internet Explorer always uses the TLS implementation of the underlying Microsoft Windows OperatingSystem, a service called SChannel Security Service Provider. Internet Explorer 8 in Windows 7 and WindowsServer 2008 R2 supports TLS 1.2. Windows 7 and Windows Server 2008 R2 use the same code (MicrosoftWindows Version 6.1 (build 7600)) similar to how Windows Vista SP1 uses the same code as Windows 2008Server.[38]

• As of Presto 2.2, featured in Opera 10, Opera supports TLS 1.2.[39]

• Google's Chrome browser supports TLS 1.0, but not TLS 1.1 or 1.2.[40]

Page 14: tls

Transport Layer Security 14

StandardsThe current approved version of TLS is version 1.2, which is specified in:• RFC 5246: “The Transport Layer Security (TLS) Protocol Version 1.2”.The current standard replaces these former versions, which are now considered obsolete:• RFC 2246: “The TLS Protocol Version 1.0”.• RFC 4346: “The Transport Layer Security (TLS) Protocol Version 1.1”.as well as the never standardized SSL 3.0:• RFC 6101: “The Secure Sockets Layer (SSL) Protocol Version 3.0”.Other RFCs subsequently extended TLS.Extensions to TLS 1.0 include:• RFC 2595: “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, authenticatedcommunication over the Internet.

• RFC 2712: “Addition of Kerberos Cipher Suites to Transport Layer Security (TLS)”. The 40-bit cipher suitesdefined in this memo appear only for the purpose of documenting the fact that those cipher suite codes havealready been assigned.

• RFC 2817: “Upgrading to TLS Within HTTP/1.1”, explains how to use the Upgrade mechanism in HTTP/1.1 toinitiate Transport Layer Security (TLS) over an existing TCP connection. This allows unsecured and securedHTTP traffic to share the same well known port (in this case, http: at 80 rather than https: at 443).

• RFC 2818: “HTTP Over TLS”, distinguishes secured traffic from insecure traffic by the use of a different 'serverport'.

• RFC 3207: “SMTP Service Extension for Secure SMTP over Transport Layer Security”. Specifies an extension tothe SMTP service that allows an SMTP server and client to use transport-layer security to provide private,authenticated communication over the Internet.

• RFC 3268: “AES Ciphersuites for TLS”. Adds Advanced Encryption Standard (AES) cipher suites to thepreviously existing symmetric ciphers.

• RFC 3546: “Transport Layer Security (TLS) Extensions”, adds a mechanism for negotiating protocol extensionsduring session initialisation and defines some extensions. Made obsolete by RFC 4366.

• RFC 3749: “Transport Layer Security Protocol Compression Methods”, specifies the framework for compressionmethods and the DEFLATE compression method.

• RFC 3943: “Transport Layer Security (TLS) Protocol Compression Using Lempel-Ziv-Stac (LZS)”.• RFC 4132: “Addition of Camellia Cipher Suites to Transport Layer Security (TLS)”.• RFC 4162: “Addition of SEED Cipher Suites to Transport Layer Security (TLS)”.• RFC 4217: “Securing FTP with TLS”.• RFC 4279: “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:• RFC 4347: “Datagram Transport Layer Security” specifies a TLS variant that works over datagram protocols

(such as UDP).• RFC 4366: “Transport Layer Security (TLS) Extensions” describes both a set of specific extensions and a generic

extension mechanism.• RFC 4492: “Elliptic Curve Cryptography (ECC) Cipher Suites for Transport Layer Security (TLS)”.• RFC 4507: “Transport Layer Security (TLS) Session Resumption without Server-Side State”.• RFC 4680: “TLS Handshake Message for Supplemental Data”.• RFC 4681: “TLS User Mapping Extension”.

Page 15: tls

Transport Layer Security 15

• RFC 4785: “Pre-Shared Key (PSK) Ciphersuites with NULL Encryption for Transport Layer Security (TLS)”.• RFC 5054: “Using the Secure Remote Password (SRP) Protocol for TLS Authentication”. Defines the TLS-SRP

ciphersuites.• RFC 5081: “Using OpenPGP Keys for Transport Layer Security (TLS) Authentication”, obsoleted by RFC 6091.Extensions to TLS 1.2 include:• RFC 5746: “Transport Layer Security (TLS) Renegotiation Indication Extension”.• RFC 5878: “Transport Layer Security (TLS) Authorization Extensions”.• RFC 6091: “Using OpenPGP Keys for Transport Layer Security (TLS) Authentication“.• RFC 6176: “Prohibiting Secure Sockets Layer (SSL) Version 2.0”.• RFC 6209: “Addition of the ARIA Cipher Suites to Transport Layer Security (TLS)”.

References and footnotes[1] T. Dierks, E. Rescorla (August 2008). "The Transport Layer Security (TLS) Protocol, Version 1.2" (http:/ / tools. ietf. org/ html/ rfc5246). .[2] A. Freier, P. Karlton, P. Kocher (August 2011). "The Secure Sockets Layer (SSL) Protocol Version 3.0" (http:/ / tools. ietf. org/ html/

rfc6101). .[3] " SSL/TLS in Detail (http:/ / technet. microsoft. com/ en-us/ library/ cc785811. aspx)". Microsoft TechNet. Updated July 31, 2003.[4] "Description of the Secure Sockets Layer (SSL) Handshake" (http:/ / support. microsoft. com/ kb/ 257591). Support.microsoft.com.

2008-07-07. . Retrieved 2012-05-17.[5] 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[6] "THE SSL PROTOCOL" (http:/ / web. archive. org/ web/ 19970614020952/ http:/ / home. netscape. com/ newsref/ std/ SSL. html). Netscape

Corporation. 2007. Archived from the original (http:/ / home. netscape. com/ newsref/ std/ SSL. html) on 14 June 1997. .[7][7] Rescorla 2001[8] Dan Goodin (2011-09-19). "Hackers break SSL encryption used by millions of sites" (http:/ / www. theregister. co. uk/ 2011/ 09/ 19/

beast_exploits_paypal_ssl/ ). .[9] "Y Combinator comments on the issue" (http:/ / news. ycombinator. com/ item?id=3015498). 2011-09-20. .[10] "Security of CBC Ciphersuites in SSL/TLS" (http:/ / www. openssl. org/ ~bodo/ tls-cbc. txt). 2004-05-20. .[11] Brian Smith (2011-09-30). "(CVE-2011-3389) Rizzo/Duong chosen plaintext attack (BEAST) on SSL/TLS 1.0 (facilitated by websockets

-76)" (https:/ / bugzilla. mozilla. org/ show_bug. cgi?id=665814). .[12] "Vulnerability in SSL/TLS Could Allow Information Disclosure (2643584)" (http:/ / technet. microsoft. com/ en-us/ security/ bulletin/

ms12-006). 2012-01-10. .[13] "Safest ciphers to use with the BEAST? (TLS 1.0 exploit)" (http:/ / serverfault. com/ questions/ 315042/ ). 2011-09-24. .[14] "First solutions for SSL/TLS vulnerability" (http:/ / www. h-online. com/ security/ news/ item/

First-solutions-for-SSL-TLS-vulnerability-1349813. html). 2011-09-26. .[15] Dierks, T. and E. Rescorla (April 2006). "The Transport Layer Security (TLS) Protocol Version 1.1, RFC 4346" (http:/ / tools. ietf. org/

html/ rfc5246#ref-TLS1. 1). .[16] National Institute of Standards and Technology (December 2010). "Implementation Guidance for FIPS PUB 140-2 and the Cryptographic

Module Validation Program" (http:/ / csrc. nist. gov/ groups/ STM/ cmvp/ documents/ fips140-2/ FIPS1402IG. pdf). .[17] Eric Rescorla (2009-11-05). "Understanding the TLS Renegotiation Attack" (http:/ / www. educatedguesswork. org/ 2009/ 11/

understanding_the_tls_renegoti. html). Educated Guesswork. . Retrieved 2009-11-27.[18] "SSL_CTX_set_options SECURE_RENEGOTIATION" (http:/ / www. openssl. org/ docs/ ssl/ SSL_CTX_set_options.

html#SECURE_RENEGOTIATION). OpenSSL Docs. 2010-02-25. . Retrieved 2010-11-18.[19] "GnuTLS 2.10.0 released" (http:/ / article. gmane. org/ gmane. network. gnutls. general/ 2046). GnuTLS release notes. 2010-06-25. .

Retrieved 2011-07-24.[20] "NSS 3.12.6 release notes" (https:/ / developer. mozilla. org/ NSS_3. 12. 6_release_notes). NSS release notes. 2010-03-03. . Retrieved

2011-07-24.[21] Various (2002-08-10). "IE SSL Vulnerability" (http:/ / www. mail-archive. com/ bugtraq@securityfocus. com/ msg08807. html). Educated

Guesswork. . Retrieved 2010-11-17.[22] "Defeating SSL" (https:/ / www. blackhat. com/ presentations/ bh-dc-09/ Marlinspike/ BlackHat-DC-09-Marlinspike-Defeating-SSL. pdf). .[23] Adrian, Dimcev. "SSL/TLS version rollbacks and browsers" (http:/ / www. carbonwind. net/ blog/ post/

Random-SSLTLS-101–SSLTLS-version-rollbacks-and-browsers. aspx). Random SSL/TLS 101. . Retrieved 9 March 2011.[24] Lawrence, Eric (2005-10-22). "IEBlog : Upcoming HTTPS Improvements in Internet Explorer 7 Beta 2" (http:/ / blogs. msdn. com/ ie/

archive/ 2005/ 10/ 22/ 483795. aspx). MSDN Blogs. . Retrieved 2007-11-25.[25] "Bugzilla@Mozilla — Bug 236933 - Disable SSL2 and other weak ciphers" (https:/ / bugzilla. mozilla. org/ show_bug. cgi?id=236933).

Mozilla Corporation. . Retrieved 2007-11-25.

Page 16: tls

Transport Layer Security 16

[26] "Firefox still sends SSLv2 handshake even though the protocol is disabled" (https:/ / bugzilla. mozilla. org/ show_bug. cgi?id=454759).2008-09-11. .

[27] Pettersen, Yngve (2007-04-30). "10 years of SSL in Opera — Implementer's notes" (http:/ / my. opera. com/ yngve/ blog/ 2007/ 04/ 30/10-years-of-ssl-in-opera). Opera Software. . Retrieved 2007-11-25.

[28] Wolfgang, Gruener. "False Start: Google Proposes Faster Web, Chrome Supports It Already" (http:/ / www. conceivablytech. com/ 3299/products/ false-start-google-proposes-faster-web-chrome-supports-it-already). . Retrieved 9 March 2011.

[29] Brian, Smith. "Limited rollback attacks in False Start and Snap Start" (http:/ / www. ietf. org/ mail-archive/ web/ tls/ current/ msg06933.html). . Retrieved 9 March 2011.

[30] Adrian, Dimcev. "False Start" (http:/ / www. carbonwind. net/ blog/ post/ Random-SSLTLS-101-False-Start. aspx). Random SSL/TLS 101. .Retrieved 9 March 2011.

[31] These certificates are currently X.509, but there is also a draft specifying the use of OpenPGP based certificates.[32] Chris (2009-02-18). "vsftpd-2.1.0 released - Using TLS session resume for FTPS data connection authentication" (http:/ / scarybeastsecurity.

blogspot. com/ 2009/ 02/ vsftpd-210-released. html). Scarybeastsecurity.blogspot.com. . Retrieved 2012-05-17.[33] "Named-based SSL virtual hosts: how to tackle the problem" (https:/ / www. switch. ch/ pki/ meetings/ 2007-01/

namebased_ssl_virtualhosts. pdf) (PDF). . Retrieved 2012-05-17.[34] Apple (2009-06-10). "Features" (http:/ / www. apple. com/ safari/ features. html). . Retrieved 2009-06-10.[35] Adrian, Dimcev. "Common browsers/libraries/servers and the associated cipher suites implemented" (http:/ / www. carbonwind. net/

TLS_Cipher_Suites_Project/ tls_ssl_cipher_suites_annex_a1_main. docx). TLS Cipher Suites Project. .[36] Mozilla (2008-08-06/). "Security in Firefox 2" (https:/ / developer. mozilla. org/ en/ Security_in_Firefox_2). . Retrieved 2009-03-31.[37] "Bug 480514 - Implement support for TLS 1.2 (RFC 5246)" (https:/ / bugzilla. mozilla. org/ show_bug. cgi?id=480514). 2010-03-17. .

Retrieved 2010-04-04.[38] Microsoft (2009-02-27). "MS-TLSP Appendix A" (http:/ / msdn. microsoft. com/ en-us/ library/ dd208005(PROT. 13). aspx). . Retrieved

2009-03-19.[39] Yngve Nysæter Pettersen (2009-02-25). "New in Opera Presto 2.2: TLS 1.2 Support" (http:/ / my. opera. com/ core/ blog/ 2009/ 02/ 25/

new-in-opera-presto-2-2-tls-1-2-support). . Retrieved 2009-02-25.[40] Chromium Project (2011-07-25). "No TLS 1.2 (SHA-2) Support" (http:/ / code. google. com/ p/ chromium/ issues/ detail?id=90392). .

Retrieved 2011-09-21.

Further reading• Wagner, David; Schneier, Bruce (November 1996). "Analysis of the SSL 3.0 Protocol" (http:/ / www. schneier.

com/ paper-ssl. pdf). The Second USENIX Workshop on Electronic Commerce Proceedings. USENIX Press.• Eric Rescorla (2001). SSL and TLS: Designing and Building Secure Systems. United States: Addison-Wesley Pub

Co. ISBN 0-201-61598-3.• Joshua Davies (2011). Implementing SSL/TLS Using Cryptography and PKI. New York: Wiley.

ISBN 978-0-470-92041-1.• Stephen A. Thomas (2000). SSL and TLS essentials securing the Web. New York: Wiley. ISBN 0-471-38354-6.• Bard, Gregory (2006). "A Challenging But Feasible Blockwise-Adaptive Chosen-Plaintext Attack On Ssl" (http:/

/ eprint. iacr. org/ 2006/ 136). International Association for Cryptologic Research (136). Retrieved 2011-09-23.• Canvel, Brice. "Password Interception in a SSL/TLS Channel" (http:/ / lasecwww. epfl. ch/ memo/ memo_ssl.

shtml). Retrieved 2007-04-20.• IETF Multiple Authors. "RFC of change for TLS Renegotiation" (http:/ / tools. ietf. org/ html/ rfc5746). Retrieved

2009-12-11.• Creating VPNs with IPsec and SSL/TLS (http:/ / www. linuxjournal. com/ article/ 9916) Linux Journal article by

Rami Rosen

Page 17: tls

Transport Layer Security 17

External links• SSL 2 specification (http:/ / www. mozilla. org/ projects/ security/ pki/ nss/ ssl/ draft02. html) (published 1994)• Early drafts of SSL 3.0 specification (http:/ / tools. ietf. org/ html/ draft-freier-ssl-version3-00) (published 1995)• The Secure Sockets Layer (SSL) Protocol Version 3.0 (2011) (http:/ / tools. ietf. org/ html/ rfc6101)• The IETF (Internet Engineering Task Force) TLS Workgroup (http:/ / www. ietf. org/ html. charters/ tls-charter.

html)• SSL tutorial (http:/ / www2. rad. com/ networks/ 2001/ ssl/ index. htm)• ECMAScript Secure Transform (Web 2 Secure Transform Method) (http:/ / www. semnanweb. com/

ecmast-ecmascript-secure-transform/ )• OWASP: Transport Layer Protection Cheat Sheet (http:/ / www. owasp. org/ index.

php?title=Transport_Layer_Protection_Cheat_Sheet)• A talk on SSL/TLS that tries to explain things in terms that people might understand. (http:/ / computing. ece. vt.

edu/ ~jkh/ Understanding_SSL_TLS. pdf)• SSL: Foundation for Web Security (http:/ / www. cisco. com/ web/ about/ ac123/ ac147/ archived_issues/ ipj_1-1/

ssl. html)This article is based on material taken from the Free On-line Dictionary of Computing prior to 1 November 2008 andincorporated under the "relicensing" terms of the GFDL, version 1.3 or later.

Page 18: tls

Article Sources and Contributors 18

Article Sources and ContributorsTransport Layer Security  Source: http://en.wikipedia.org/w/index.php?oldid=493620239  Contributors: 0x6adb015, 5ko, 806f0F, Abaybas, Abdull, AbsolutDan, Acodring, Adam Conover,Adrianfd, Aka042, Akebinho, Alansohn, Albedo, Aldie, Alec it, Alias Flood, AlistairMcMillan, Alphathon, Amenel, Anclation, Andre Engels, Andrei.wap, Andrew Hampe, Andrzej P. Wozniak,Anna512, Anon lynx, Ant honey, Antientropic, Apankrat, Aprogrammer, Arkoon, Arman Cagle, Armour Hotdog, Arsenikk, Ashdurbat, Avbentem, AxelBoldt, Barakw, Barek, Beetstra, Beland,Bender235, Beno1000, Biot, Blackbearded, BlindWanderer, Blodulv, Boblord, Boomboombi, Borb, Bovineone, Branko, Branlon, Bryan Derksen, Btrzupek, Bunnyhop11, Burke Libbey, Bxj,C1010, CKlunck, Cajunbill, Calton, CanadianLinuxUser, CanisRufus, Cellmate707, Cf. Hay, Cfp, Chealer, Chester Markel, Chris conlon, Ciphers, ClementSeveillac, Colenso, Colonies Chris,Comet Tuttle, CommonsDelinker, Complicated1, Conseguenza, Conversion script, Crossland, Czhower, DARTH SIDIOUS 2, David-Sarah Hopwood, Davidfstr, Davidoff, Davodd,Dawnseeker2000, Debresser, Deedub1983, Devon Sean McCullough, Dfarrell07, Dictouray, Digi-cs, Discospinster, Doedoejohn, Dogbyter, Dougjih, Dreamafter, Ed Brey, Edward, Emperorbma,Enjoi4586, Ercrt, Ericnay, Erth64net, Eruionnyron, Esmond.pitt, Etu, Everyking, Evice, ExportRadical, Eyreland, FBarber, Falcon8765, Feezo, Felixcatuk, FlippyFlink, FloydRTurbo, Frap,Freyr, Fritzophrenic, Fryed-peach, Furrykef, GABaker, Gerbrant, Ghalas, Ghettoblaster, Gidoca, Giftlite, Gionnico, GoodStuff, Gracefool, Graham87, Greatwhitesharkbear, GreyCat, Groovy12,Guthrg007, Gzorg, Haakon, HaeB, Haham hanuka, Hairy Dude, HamburgerRadio, Hanche, Hawk-Eagle, Hgfernan, Hottdee, Iangfc, Iida-yosiaki, Imroy, Int21h, Interiot, Intgr, Isilanes, Itahmed,J-p krelli, JTN, JWilk, JaGa, Jamelan, Jas4711, Jc monk, Jclemens, Jdthood, Jef-Infojef, Jesse Viviano, Jigen III, Jjplaya209, Jlehen, Jmaister, Jmorgan, JoanneB, JoaoRicardo, Joblack,JonHarder, Jpinkerton88, Juhovh, Julie Deanna, Kbrose, Kelson, Kgaughan, Kgfleischmann, Kinema, Koektrommel, Koeplinger, Kpsmithuk, Krellis, Ksn, Kyng, Lakshmin, LeoNomis, Leotohill,Levin, LittleBenW, Loftenter, Lotje, Lradrama, Lukegilman, Lundse, Lunkwill, Lzyiii, M. B., Jr., Maartenvanrooijen, Mabdul, Mac, Madigral, Magioladitis, MagnetiK, Makerofthings7,Mange01, Mani1, Marrowmonkey, Martinkunev, Materialscientist, Matt Crypto, Matthew V Ball, Maxim Razin, Mayevski, Meetabu, Meowimasexycat, Mgcsinc, Michael Hardy, MichaelCoates,Michaelfowler, Michaelkrauklis, Mickraus, Mike Rosoft, Mild Bill Hiccup, Mindmatrix, MinorContributor, Mischling, MisterSSL, Mmernex, Molf, Moocha, Mpvdm, Mr Heine, Mrbbking,Msiddalingaiah, Mundocani, Mwanner, Mydogategodshat, Mårten Berglund, N.MacInnes, Nagle, Nealcardwell, Nealmcb, Nerwal, Nikai, Nill smith, Nils, Ninels, Niqueco, Nitrogenx, Nk, Nmav,Nonno88, Noq, Ntsimp, Nubiatech, Nurg, Nuujinn, Nyco, ObscurO, Oconnor663, Olegos, Olivier Debre, Omniplex, Oscardt, PHansen, Papadopa, Pasi Eronen, Paul Foxworthy, Paul1337,PeterB, Pfortuny, Phoenix-forgotten, Pilotguy, Plugwash, Plustgarten, Pmsyyz, Ppelleti, Produke, Psz, Qslack, QuiteUnusual, RP459, Raanoo, Rafigordon, Rarut, Rasmus Faber, Raviaulakh, RayDassen, Remember the dot, Rettetast, ReyBrujo, Rholton, Rich Farmbrough, RichiH, Rick Block, Ripsss, Rlcantwell, Robertssh, Robinalden, SCΛRECROW, SPCartman, SSLcertificatesecurity,Sachuraju, Sanxiyn, Sara Wright, Sbose7890, Scetoaux, Schlafly, Schmalls, Seneces, Sesu Prime, Sfisher, Shaddack, Shadowjams, ShakataGaNai, Siddhant, Simetrical, Simon.may.007, Sleske,Smyth, Spartan-James, Speaker to Lampposts, SpeedyGonsales, Star General, Startcom, Stefonic, Stephan Leeds, Stupid Corn, SunCreator, Superm401, Suruena, Swagatata, Sweeper tamonten,TDM, THEN WHO WAS PHONE?, TJJFV, Ta bu shi da yu, Tacke, Tbutzon, Ternto333, The Anome, TheWishy, Themfromspace, Thomas Springer, Thomasgud, Thorne, Thulasi.goriparthi,Thumperward, Thunderbritches, Tim Ivorson, Timberframe, Titiri, Tommy2010, Tony esopi patra, Toyotabedzrock, Tpbradbury, Tqbf, Traveler100, TwelveBaud, Twkd, Typhoonhurricane,UncleBubba, Unixman83, Uogl, Usaguruman, VAcharon, Verdy p, Versageek, VictorAnyakin, Vijay.kotari, Vinayr rao, VishalJBhatt, WLU, Wavelength, Webguynik, Weedwhacker128, Weyes,Wiarthurhu, Widefox, Wilfrednilsen, William Avery, WinTakeAll, Winterst, Wizofaus, Wmahan, Wmasterj, WojPob, Writermonique, Wutherings, Ww, Xizhi.zhu, Yadirh, Yaronf,Youremyjuliet, Ysimonson, Yuhong, Zigkill, Zimbabweed, Zr40, Zundark, Zzuuzz, 책읽는달팽, 819 anonymous edits

LicenseCreative Commons Attribution-Share Alike 3.0 Unported//creativecommons.org/licenses/by-sa/3.0/