SSL stands for Secure Sockets Layer and was originally created by Netscape. SSLv2 and SSLv3 are the 2 versions of this protocol (SSLv1 was never publicly released). After SSLv3, SSL was renamed to TLS.
TLS stands for Transport Layer Security and started with TLSv1.0 which is an upgraded version of SSLv3.
Those protocols are standardized and described by RFCs.
OpenSSL provides an implementation for those protocols and is often used as the reference implementation for any new feature.
The goal of SSL was to provide secure communication using classical TCP sockets with very few changes in API usage of sockets to be able to leverage security on existing TCP socket code.
SSL/TLS is used in every browser worldwide to provide https ( http secure ) functionality.
Signaling cipher suite value (SCSV), i.e., it does not actually correspond to a suite of cryptosystems.
Its presence is used to signal some facts or contextual information allowing it to not break existing implementations that just ignore this unsupported cipher suite.
SCSV was created with TLS_EMPTY_RENEGOTIATION_INFO_SCSV in rfc5746 draft.
http://tools.ietf.org/html/rfc5746#section-3.3
Usage of a cipher suite value is explained by the fact that some SSLv3 and TLSv1.0 implementations fail to ignore extensions that they do not support, so using a cipher suite allows the bypass of these implementation problems.
A connection always starts with a handshake between a client and a server. This handshake is intended to provide a secret key to both client and server that will be used to cipher the flow.
In fact a
master secret
is obtained from the handshake from which the secret key is derived. In OpenSSL this master_secret is kept within the SSL Session
SSL_SESSION
.
The initial handshake can provide server authentication, client authentication or no authentication at all.
Default usage in HTTPS is to verify server authenticity with trusted Certificate Authorities known by the browser.
The single cipher suite selected by the server from the list in
ClientHello.cipher_suites. For resumed sessions, this field is
the value from the state of the session being resumed.
So basically server has the decision choice and does not provide a list of its own ciphersuites but just the selected one
Since the handshake uses public key cryptography heavily and this is CPU intensive compared to symmetric ( secret key ) cryptography, the protocol provides ways to reuse existing credentials to reissue new secret keys for new connections ( new TCP connections ) or to renew existing connections.
Browsers use this heavily when connecting to https sites since they open multiple connections to the same site at a time. The first connection does the handshake while all the others use a quick handshake (can be named resumed, abbreviated or restart handshake) allowing saving for both client and server CPU.
RFC 2246, section 7, p. 23
These items are then used to create security parameters for use by
the Record Layer when protecting application data. Many connections
can be instantiated using the same session through the resumption
feature of the TLS Handshake Protocol.
This explains difference the between an OpenSSL SSL Connection ( SSL ) and an SSL Session ( SSL_SESSION ) , each SSL Connection runs on its TCP connection and can share the same SSL Session with other SSL connections.
On a Ssl connection a renegotiation can occur to request for new cipher suites or key materials.
To renegotiate :
a Client will send a ClientHello over its existing SSL connection
a Server will send a HelloRequest and expects Client to renegotiate with a ClientHello in very short time.
Server renegotiation ( without resumption ):
# Given a SSL Connection con :
SSL *con;
SSL_renegotiate(con);
i=SSL_do_handshake(con);
To use both renegotiation and resumption use : SSL_renegotiate_abbreviated(con) which won't request to recreate a new session ( since 1.0.1 ).
It created a vulnerability that was addressed by TLS extension to notify server whenever a connection is renegotiating and allows to verify it is legit.
This is RFC5746 "Transport Layer Security (TLS) Renegotiation Indication Extension" http://tools.ietf.org/html/rfc5746 to perform Secure Renegotiation
Allows a client to specify at the very beginning of the handshake what server name it wants to connect to.
This is very useful for a web server that serves multiple domains but doesn't have a wildcard certificate or a certificate containing a full list of supported domains.
In this case the server can learn from the client what Certificate the client expects to receive.
See how a C program can use Libssl API and provide SNI information with
SSL_set_tlsext_host_name See example in SSL/TLS_Client
This is Public Key Certified by a Certificate with Trust from the client. Trust from the client can be done automatically with Certificate Authority trust.
It is crucial that clients check the Server Certificate against the expected hostname Hostname_validation
Even if it look like is a strange idea, it is possible to select cipher suite that does not provide any server authentication but still provide confidentiality.
Selecting string cipher aNULLManual:ciphers(1) allows to select such cipher suite. Remark this is not same a eNULL that provides no confidentiality at all.
Anonymous Diffie_Hellman exchange (DH) and Anonymous Elliptic Curves Diffie Hellman Exchange (ECDH) methods provide this anonymous authentication.
Client authentication is optional. In many cases the client does not authenticate at the ssl layer, but rather with the usage of protocols above ssl, for example with HTTP authentication methods.
Server can send a Certificate Request with digest algorithms and a list CA Distinguished names which will be used by the client to select the Client Certificate it will send.
The Client sends a Certificate Verify that is signed by the private key counterpart of its Client public key included in the Certificate with digest algorithm over whole handshake messages so far ( excluding this one of course ).
This proves that this client owns the private key that applies to this specific handshake and hence authenticates the client for this session.