Neha Patil (Editor)

Cipher suite

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Cipher suite is a concept used in Transport Layer Security (TLS) / Secure Sockets Layer (SSL) network protocol. Before TLS version 1.3, a cipher suite is a named combination of authentication, encryption, message authentication code (MAC) and key exchange algorithms used to negotiate the security settings. The format of cipher suites is modified since TLS 1.3. In the current TLS 1.3 draft document, cipher suites are only used to negotiate encryption and HMAC algorithms.

Contents

The structure and use of the cipher suite concept is defined in the documents that define the protocol. A reference for named cipher suites is provided in the TLS Cipher Suite Registry.

Use

When a TLS connection is established, a handshaking, known as the TLS Handshake Protocol, occurs. Within this handshake, a client hello (ClientHello) and a server hello (ServerHello) message are passed. First, the client sends a list of the cipher suites that it supports, in order of preference. Then the server replies with the cipher suite that it has selected from the client's list. To test which TLS ciphers a server supports, an SSL/TLS Scanner may be used.

In TLS 1.0 - 1.2

Each named cipher suite, e.g. TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, defines a key exchange algorithm, a bulk encryption algorithm, a message authentication code (MAC) algorithm, and a pseudorandom function (PRF).

  • The key exchange algorithm, e.g. ECDHE_RSA, is used to determine if and how the client and server will authenticate during the handshake.
  • The bulk encryption algorithm, e.g. AES_128_GCM, is used to encrypt the message stream. It also includes the key size and the lengths of explicit and implicit initialization vectors (cryptographic nonces).
  • The message authentication code algorithm, e.g. SHA256, is used to create the message digest, a cryptographic hash of each block of the message stream.
  • The pseudorandom function, e.g. TLS 1.2's PRF using the MAC algorithm's hash function, is used to create the master secret, a 48-byte secret shared between the two peers in the connection. The master secret is used as a source of entropy when creating session keys, such as the one used to create the MAC.
  • Examples of algorithms used

    Key exchange/agreement
    RSA, Diffie–Hellman, ECDH, SRP, PSK
    Authentication
    RSA, DSA, ECDSA
    Block ciphers
    RC4, Triple DES, AES, IDEA, DES, or Camellia. In older versions of SSL, RC2 was also used.
    Message authentication
    For TLS, a hash-based message authentication code using MD5 or one of the SHA hash functions is used. For SSL, SHA, MD5, MD4, and MD2 are used.

    In TLS 1.3 (draft)

    In TLS 1.3, a cipher suite represents an AEAD encryption algorithm and a hash algorithm used in HKDF. For example, TLS_AES_128_GCM_SHA256 indicates AES_128_GCM is used to encrypt messages, and SHA256 is the underlying hash algorithm in HKDF. Non-AEAD encryption algorithms (such as AES_128_CBC) are not allowed to be used.

    Since the structure of TLS 1.3 cipher suites is different from that in previous versions, cipher suites defined for TLS 1.3 cannot be used in TLS 1.2, and vice versa.

    Key exchange algorithms are negotiated using TLS extensions.

    References

    Cipher suite Wikipedia