Introduction To SSL
Introduction To SSL
html
Appendix B
Introduction to SSL
This appendix introduces the Secure Sockets Layer (SSL) protocol. SSL has been universally
accepted on the World Wide Web for authenticated and encrypted communication between
clients and servers. This appendix contains the following sections:
The new Internet Engineering Task Force (IETF) standard protocol called Transport Layer
Security (TLS) is based on SSL. The details of the protocol are available in RFC 2246, The
TLS Protocol Version 1.0. Some Sun Java System products already support TLS.
This appendix is primarily intended for administrators of Sun Java System server products,
but the information it contains may also be useful for developers of applications that support
SSL. The appendix assumes that you are familiar with the basic concepts of public-key
cryptography, as summarized in Appendix A, "Introduction to Public-Key Cryptography."
The SSL protocol runs above TCP/IP and below higher-level protocols such as HTTP or
IMAP. It uses TCP/IP on behalf of the higher-level protocols, and in the process allows an
SSL-enabled server to authenticate itself to an SSL-enabled client, allows the client to
1 of 11 16-Oct-08 10:28
Appendix B Introduction to SSL http://docs.sun.com/source/817-7612/ax_ssl.html
authenticate itself to the server, and allows both machines to establish an encrypted
connection.
These capabilities address fundamental concerns about communication over the Internet and
other TCP/IP networks:
The SSL protocol includes two sub-protocols: the SSL record protocol and the SSL
handshake protocol. The SSL record protocol defines the format used to transmit data. The
SSL handshake protocol involves using the SSL record protocol to exchange a series of
messages between an SSL-enabled server and an SSL-enabled client when they first establish
an SSL connection. This exchange of messages is designed to facilitate the following actions:
For more information about the handshake process, see The SSL Handshake.
Key-exchange algorithms like KEA and RSA key exchange govern the way in which the
server and client determine the symmetric keys they both use during an SSL session. The
most commonly used SSL cipher suites use RSA key exchange.
2 of 11 16-Oct-08 10:28
Appendix B Introduction to SSL http://docs.sun.com/source/817-7612/ax_ssl.html
The SSL 2.0 and SSL 3.0 protocols support overlapping sets of cipher suites. Administrators
can enable or disable any of the supported cipher suites for both clients and servers. When a
particular client and server exchange information during the SSL handshake, they identify the
strongest enabled cipher suites they have in common and use those for the SSL session.
Decisions about which cipher suites a particular organization decides to enable depend on
trade-offs among the sensitivity of the data involved, the speed of the cipher, and the
applicability of export rules.
Note Server Console does not support all of the cipher suites supported by various
clients and servers. To ensure that Server Console can control an
SSL-enabled server, the server must enable at least one of the cipher suites
for SSL 3.0:
3 of 11 16-Oct-08 10:28
Appendix B Introduction to SSL http://docs.sun.com/source/817-7612/ax_ssl.html
Table B-1 Cipher Suites Supported by the SSL Protocol That Use the RSA
Key-Exchange Algorithm
Strongest Cipher Suite Triple DES With 168-Bit Encryption and SHA-1
Message Authentication
This cipher suite is appropriate for banks
and other institutions that handle highly Triple Data Encryption Standard (Triple DES) is
sensitive data. the strongest cipher supported by SSL, but it is
not as fast as RC4. Triple DES uses a key three
Server Console does not support this times as long as the key for standard DES.
cipher suite. Because the key size is so large, there are more
possible keys than for any other cipher
—approximately 3.7 * 1050.
4 of 11 16-Oct-08 10:28
Appendix B Introduction to SSL http://docs.sun.com/source/817-7612/ax_ssl.html
Less Strong Cipher Suites RC4 With 40-Bit Encryption and MD5 Message
Authentication
These cipher suites are not as strong as
those listed above, but are widely used.1 RC4 40-bit encryption permits approximately
1.1 * 1012 (a trillion) possible keys. RC4 ciphers
are the fastest of the supported ciphers.
1Note that for RC4 and RC2 ciphers, the phrase "40-bit encryption" means the keys are still 128 bits
long, but only 40 bits have cryptographic significance.
The exact programmatic details of the messages exchanged during the SSL handshake are
5 of 11 16-Oct-08 10:28
Appendix B Introduction to SSL http://docs.sun.com/source/817-7612/ax_ssl.html
beyond the scope of this appendix. However, the steps involved can be summarized as
follows (assuming the use of the cipher suites listed in Cipher Suites With RSA Key
Exchange):
1. The client sends the server the client's SSL version number, cipher settings, randomly
generated data, and other information the server needs to communicate with the client
using SSL.
2. The server sends the client the server's SSL version number, cipher settings, randomly
generated data, and other information 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, requests the client's certificate.
3. The client uses some of the information sent by the server to authenticate the server
(for details, see Server Authentication.) 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 goes
on to Step 4.
4. Using all data generated in the handshake so 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 sends the encrypted pre-master secret to the server.
5. 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.
6. If the server has requested client authentication, the server attempts to authenticate the
client (for details, see Client Authentication). If the client cannot be authenticated, the
session is terminated. If the client can be successfully authenticated, the server uses its
private key to decrypt the pre-master secret, then performs a series of steps (which the
client also performs, starting from the same pre-master secret) to generate the master
secret.
7. 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 changes in the data between the
time it was sent and the time it is received over the SSL connection.
8. The client sends a message to the server informing it that future messages from the
client are encrypted with the session key. It then sends a separate (encrypted) message
indicating that the client portion of the handshake is finished.
9. The server sends a message to the client informing it that future messages from the
server are encrypted with the session key. It then sends a separate (encrypted) message
indicating that the server portion of the handshake is finished.
10. The SSL handshake is now complete, and the SSL session has begun. The client and the
server use the session keys to encrypt and decrypt the data they send to each other and
to validate its integrity.
Before continuing with the session, Sun Java System servers can be configured to check that
the client's certificate is present in the user's entry in an LDAP directory. This configuration
option provides one way of ensuring that the client's certificate has not been revoked.
Both client and server authentication involve encrypting some piece of data with one key of a
public-private key pair and decrypting it with the other key:
In the case of server authentication, the client encrypts the pre-master secret with the
server's public key. Only the corresponding private key can correctly decrypt the
secret, so the client has some assurance that the identity associated with the public key
is in fact the server with which the client is connected. Otherwise, the server cannot
6 of 11 16-Oct-08 10:28
Appendix B Introduction to SSL http://docs.sun.com/source/817-7612/ax_ssl.html
decrypt the pre-master secret and cannot generate the symmetric keys required for the
session, and the session is terminated.
In the case of client authentication, the client encrypts some random data with the
client's private key—that is, it creates a digital signature. The public key in the client's
certificate can correctly validate the digital signature only if the corresponding private
key was used. Otherwise, the server cannot validate the digital signature and the
session is terminated.
The sections that follow provide more details on server authentication and client
authentication.
Server Authentication
SSL-enabled client software always requires server authentication, or cryptographic
validation by a client of the server's identity. As explained in Step 2 of The SSL
Handshakethe server sends the client a certificate to authenticate itself. The client uses the
certificate in Step 3 to authenticate the identity the certificate claims to represent.
To authenticate the binding between a public key and the server identified by the certificate
that contains the public key, an SSL-enabled client must receive a "yes" answer to the four
questions shown in Figure B-2.
7 of 11 16-Oct-08 10:28
Appendix B Introduction to SSL http://docs.sun.com/source/817-7612/ax_ssl.html
1. Is today's date within the validity period? The client checks the server certificate's
validity period. If the current date and time are outside of that range, the authentication
process won't go any further. If the current date and time are within the certificate's
validity period, the client goes on to Step 2.
2. Is the issuing CA a trusted CA? Each SSL-enabled client maintains a list of trusted
CA certificates, represented by the shaded area on the right side of Figure B-3. This list
determines which server certificates the client accepts. If the distinguished name (DN)
of the issuing CA matches the DN of a CA on the client's list of trusted CAs, the
answer to this question is yes, and the client goes on to Step 3. If the issuing CA is not
on the list, the server is not authenticated unless the client can verify a certificate chain
ending in a CA that is on the list (see CA Hierarchiesfor details).
3. Does the issuing CA's public key validate the issuer's digital signature? The client
uses the public key from the CA's certificate (which it found in its list of trusted CAs in
step 2) to validate the CA's digital signature on the server certificate being presented. If
the information in the server certificate has changed since it was signed by the CA or if
the CA certificate's public key doesn't correspond to the private key used by the CA to
sign the server certificate, the client won't authenticate the server's identity. If the CA's
digital signature can be validated, the server treats the user's certificate as a valid "letter
of introduction" from that CA and proceeds. At this point, the client has determined
that the server certificate is valid. It is the client's responsibility to take Step 4 before
8 of 11 16-Oct-08 10:28
Appendix B Introduction to SSL http://docs.sun.com/source/817-7612/ax_ssl.html
Step 5.
4. Does the domain name in the server's certificate match the domain name of the
server itself? This step confirms that the server is actually located at the same network
address specified by the domain name in the server certificate. Although step 4 is not
technically part of the SSL protocol, it provides the only protection against a form of
security attack known as man in the middle. Clients must perform this step and must
refuse to authenticate the server or establish a connection if the domain names don't
match. If the server's actual domain name matches the domain name in the server
certificate, the client goes on to Step 5.
5. The server is authenticated. The client proceeds with the SSL handshake. If the client
doesn't get to step 5 for any reason, the server identified by the certificate cannot be
authenticated, and the user is warned of the problem and informed that an encrypted
and authenticated connection cannot be established. If the server requires client
authentication, the server performs the steps described in Client Authentication.
After the steps described here, the server must successfully use its private key to decrypt the
pre-master secret the client sends in Step 4 of The SSL Handshake.Otherwise, the SSL
session is terminated. This provides additional assurance that the identity associated with the
public key in the server's certificate is in fact the server with which the client is connected.
Man-in-the-Middle Attack
The "man in the middle" is a rogue program that intercepts all communication between the
client and a server with which the client is attempting to communicate via SSL. The rogue
program intercepts the legitimate keys that are passed back and forth during the SSL
handshake, substitutes its own, and makes it appear to the client that it is the server, and to
the server that it is the client.
The encrypted information exchanged at the beginning of the SSL handshake is actually
encrypted with the rogue program's public key or private key, rather than the client's or
server's real keys. The rogue program ends up establishing one set of session keys for use with
the real server, and a different set of session keys for use with the client. This allows the
rogue program not only to read all the data that flows between the client and the real server,
but also to change the data without being deleted. Therefore, it is extremely important for the
client to check that the domain name in the server certificate corresponds to the domain name
of the server with which a client is attempting to communicate—in addition to checking the
validity of the certificate by performing the other steps described in Server Authentication.
Client Authentication
SSL-enabled servers can be configured to require client authentication, or cryptographic
validation by the server of the client's identity. When a server configured this way requests
client authentication (see Step 6 of The SSL Handshake), the client sends the server both a
certificate and a separate piece of digitally signed data to authenticate itself. The server uses
the digitally signed data to validate the public key in the certificate and to authenticate the
identity the certificate claims to represent.
The SSL protocol requires the client to create a digital signature by creating a one-way hash
from data generated randomly during the handshake and known only to the client and server.
The hash of the data is then encrypted with the private key that corresponds to the public key
in the certificate being presented to the server.
To authenticate the binding between the public key and the person or other entity identified
by the certificate that contains the public key, an SSL-enabled server must receive a "yes"
answer to the first four questions shown in Figure B-3. Although the fifth question is not part
9 of 11 16-Oct-08 10:28
Appendix B Introduction to SSL http://docs.sun.com/source/817-7612/ax_ssl.html
of the SSL protocol, Sun Java System servers can be configured to support this requirement to
take advantage of the user's entry in an LDAP directory as part of the authentication process.
1. Does the user's public key validate the user's digital signature? The server checks
that the user's digital signature can be validated with the public key in the certificate. If
so, the server has established that the public key asserted to belong to John Doe
matches the private key used to create the signature and that the data has not been
tampered with since it was signed.
At this point, however, the binding between the public key and the DN specified in the
certificate has not yet been established. The certificate might have been created by
someone attempting to impersonate the user. To validate the binding between the
public key and the DN, the server must also complete Step 3 and Step 4.
2. Is today's date within the validity period? The server checks the certificate's validity
period. If the current date and time are outside of that range, the authentication process
won't go any further. If the current date and time are within the certificate's validity
10 of 11 16-Oct-08 10:28
Appendix B Introduction to SSL http://docs.sun.com/source/817-7612/ax_ssl.html
Part No: 817-7612-10. Copyright 2005 Sun Microsystems, Inc. All rights reserved.
11 of 11 16-Oct-08 10:28