130

I often see RSA being recommended as a method of key exchange. However, the Diffie-Hellman key exchange method appears to be secure as well.

Is there any considerations one should take into account that would lead to using one algorithm over the other?

4 Answers4

156

The situation can be confused, so let's set things right.

RSA is two algorithms, one for asymmetric encryption, and one for digital signatures. These are two distinct beast; although they share the same core mathematical operation and format for keys, they do different things in different ways. Diffie-Hellman is a key exchange algorithm, which is yet another kind of algorithm. Since the algorithms don't do the same thing, you could prefer one over the other depending on the usage context.

Asymmetric encryption and key exchange are somewhat equivalent: with asymmetric encryption, you can do a key exchange by virtue of generating a random symmetric key (a bunch of random bytes) and encrypting that with the recipient's public key. Conversely, you can do asymmetric encryption with key exchange by using the key resulting from the key exchange to encrypt data with a symmetric algorithm, e.g. AES. Moreover, Diffie-Hellman is a one-roundtrip key exchange algorithm: recipient sends his half ("DH public key"), sender computes his half, obtains the key, encrypts, sends the whole lot to the recipient, the recipient computes the key, decrypts. This is compatible with a one-shot communication system, assuming a pre-distribution of the public key, i.e. it works with emails.

So for the rest of this answer, I assume we are talking about RSA encryption.


Perfect Forward Secrecy is a nifty characteristic which can be summarized as: actual encryption is done with a key which we do not keep around, thus immune to ulterior theft. This works only in a setup in which we do not want to keep the data encrypted, i.e. not for emails (the email should remain encrypted in the mailbox), but for data transfer like SSL/TLS.

In that case, to get PFS, you need to generate a transient key pair (asymmetric encryption or key exchange) for the actual encryption; since you usually also want some sort of authentication, you may need another non-transient key pair at least on one side. This is what happens in SSL with the "DHE" cipher suites: client and server use DH for the key exchange, with newly generated DH keys (not stored), but the server also needs a permanent key pair for signatures (of type RSA, DSA, ECDSA...).

There is nothing which intrinsically prohibits generating a transient RSA key pair. Indeed, this was supported in older versions of SSL; see TLS 1.0, section 7.4.3. In that case, use of an ephemeral RSA key was mandated not for PFS, but quite the opposite: so that encryption keys, while not stored, could be broken afterwards, even if the server's permanent key was too large to be thus brutalized.

There is, however, an advantage of DH over RSA for generating ephemeral keys: producing a new DH key pair is extremely fast (provided that some "DH parameters", i.e. the group into which DH is computed, are reused, which does not entail extra risks, as far as we know). This is not a really strong issue for big servers, because a very busy SSL server could generate a new "ephemeral" RSA key pair every ten seconds for a very small fraction of his computing power, and keep it in RAM only, and for only ten seconds, which would be PFSish enough.

Nevertheless, ephemeral RSA has fallen out of fashion, and, more importantly, out of standardization. In the context of SSL, if you want PFS, you need to use ephemeral DH (aka "DHE"), because that's what is defined and supported by existing implementations.


If you do not want PFS, in particular if you want to be able to eavesdrop on your own connections or the connections of your wards (in the context of a sysadmin protecting his users through some filters, or for some debug activities), you need non-ephemeral keys. There again, RSA and DH can be used. However, still in the context of SSL, non-ephemeral DH requires that the server's key, in its X.509 certificate, contains a DH public key.

DH public keys in certificates were pushed by the US federal government back in the days when RSA was patented. But these days are long gone. Moreover, DH support was never as wide as RSA support. This is indeed an interesting example: DH was government approved, and standardized by an institutional body (as ANSI X9.42); on the other hand, RSA was standardized by a private company who was not officially entitled in any way to produce standards. But the RSA standard (PKCS#1) was free for anyone to read, and though there was a patent, it was valid only in the USA, not the rest of the world; and in the USA, RSA (the company) distributed a free implementation of the algorithm (free as long as it was for non-commercial usages). Amateur developers, including Phil Zimmerman for PGP, thus used RSA, not DH. The price of the standard is nothing for a company, but it can mean a lot for an individual. This demonstrates the impetus that can originate, in the software industry, from amateurs.

So that's one advantage of RSA over DH: standard is freely available.


For security, RSA relies (more or less) on the difficulty of integer factorization, while DH relies (more or less) on the difficulty of discrete logarithm. They are distinct problems. It so happens that the best known breaking algorithms for breaking either are variants of the General Number Field Sieve, so they both have the same asymptotic complexity. From a high-level view, a 1024-bit DH key is as robust against cryptanalysis as a 1024-bit RSA key.

If you look at the details, though, you may note that the last part of GNFS, the "linear algebra" part, which is the bottleneck in the case of large keys, is simpler in the case of RSA. That part is about reducing a terrifyingly large matrix. In the case of RSA, the matrix elements are just bits (we work in GF(2)), whereas for DH the matrix elements are integer modulo the big prime p. This means that the matrix is one thousand times bigger for DH than for RSA. Since matrix size is the bottleneck, we could state that DH-1024 is stronger than RSA-1024.

So that's one more advantage of DH: it can be argued that it gives some extra robustness over RSA keys of the same size.

Still for security, DH generalizes over other groups, such as elliptic curves. Discrete logarithm on elliptic curves is not the same problem as discrete logarithm modulo a big prime; GNFS does not apply. So there is not one Diffie-Hellman, but several algorithms. "Cryptodiversity" is a good thing to have because it enables us to switch algorithms in case some researcher finds a way to easily break some algorithms.


As for performance:

  • RSA encryption (with the public key) is substantially cheaper (thus faster) than any DH operation (even with elliptic curves).
  • RSA decryption (with the private key) entails more or less the same amount of work as DH key exchange with similar resistance. DH is a bit cheaper if it uses a permanent key pair, but a bit more expensive if you include the cost for building an ephemeral key pair.
  • In the case of SSL and DHE_RSA, the server must generate a DH key pair and sign it, and the signature includes the client and server random values, so this must be done for each connection. So choosing "DHE_RSA" instead of "RSA" kind-of doubles the CPU bill on the server for SSL -- not that it matters much in practice, though. It takes a very busy server to notice the difference.
  • A DH public key is bigger to encode than a RSA public key, if the DH key includes the DH parameters; it is smaller otherwise. In the case of SSL, using DHE_RSA instead of RSA means exchanging one or two extra kilobytes of data -- there again, only once per client (because of SSL session reuse), so that's hardly a crucial point. In some specialized protocols, ECDH (with elliptic curves) gets an important edge because the public elements are much smaller.

If you are designing a protocol in a constrained situation (e.g. involving smart cards and I/O over infrared or anything similarly low-powered), ECDH will probably be more attractive than RSA.


Summary: you will usually prefer RSA over DH, or DH over RSA, based on interoperability constraints: one will be more supported than the other, depending on the context. Performance rarely matters (at least not as much as is often assumed). For SSL, you'll want DH because it is actually DHE, and the "E" (as ephemeral) is nice to have, because of PFS.

Thomas Pornin
  • 320,799
  • 57
  • 780
  • 949
  • 5
    There is one significant difference between DH and RSA-encryption: DH implicitly authenticates both sender and receiver, whereas RSA only authenticates the receiver. If you want to authenticate the sender in a non interactive scheme, RSA can't easily replace DH. – CodesInChaos May 08 '13 at 13:08
  • 3
    In that case, add another advantage: in full static DH (client and server both have a certificate with a DH public key in it, and both keys use the same parameters), then they can get away with poor or inexistent random number generation, replacing it with a mere counter. That's an edge case. – Thomas Pornin May 08 '13 at 22:52
  • 3
    How exactly could you use a Key-exchange protocol for asymmetric encryption? Using RSA everybody can use the public key to encrypt something only the private key can decrypt. Using DH, everyone wanting to send a private message to the private key, would need to create a new public/private key pair and submit his public key with the message, right? – JSG Dec 04 '13 at 20:02
  • 2
    @JSG That's pretty much exactly what you do. ElGamal works the same way -- an encrypted thing has *two* components, one of which is essentially a public key (less the parameters of the group) and the other of which is the actual ciphertext. – cpast Apr 06 '15 at 21:29
  • 1
    Why has ephemeral RSA fallen out of fashion? – ptf Feb 09 '17 at 08:36
  • Since the identity of the key in DH depends on the independent choices of Alice and Bob, does this mean that neither party can predict what the key will look like? So if say Alice wants to share her Social Security number with Bob, is there anyway she can use DH to do that, or is RSA better suited? – dasf Jun 26 '18 at 09:43
  • 3
    @dasf Indeed, DH is a _key exchange_ mechanism. To turn that into an _encryption_ mechanism, you couple it with symmetric encryption: Alice and Bob agree on a shared key through DH, then use it with something like AES to encrypt and decrypt data. That's how things are done, for instance, in SSL/TLS. – Thomas Pornin Jun 26 '18 at 12:59
  • Why can't the client generate a random key, encrypt it with the public key of the server, and then ask server to use that key for symmetric encryption? Since the client is generating a new key every time, we still get PFS. Then why do we need DH? – saketrp Jul 25 '19 at 07:34
  • @saketrp: Because the entity in control of server's private key could recover the session key from a packet trace and decrypt the session at any point in the future—making it not *perfect* forward security. In true PFS, neither the client nor the server can decrypt the session after they close the session (assuming neither are compromised and both are correctly implemented). – darco Dec 03 '19 at 00:30
21

DH ephemeral key exchange provides perfect forward secrecy, which RSA alone does not. This means that even if the long-term key is leaked at a later date, the session keys for individual connections are not compromised, even if the full data stream is captured.

Polynomial
  • 132,208
  • 43
  • 298
  • 379
10

In the context of SSL Polynomial is right: (EC)DHE suites use ephemeral key-exchange using Diffie-Hellman. Since the server forgets the private key used for exchange soon after using it, a compromise of the server's long term key doesn't allow an attacker to decrypt all past communications, i.e. it provides Perfect forward secrecy.

I recommend using ECDHE_RSA suites in SSL. They offer perfect forward secrecy, a high security level for confidentiality (128 bits if P256 is used) and allow you to use the same certificate for both legacy RSA connections and strong ECDHE_RSA connections.


The reason protocol designers use DH for ephemeral key-exchange is performance.

  • Generating a DH key is relatively cheap: It's simply a scalar multiplication with a fixed base (or exponentiation if you use multiplicative notation).

    The total cost of an ephemeral key-exchange using ECDH is one scalar multiplication with fixed base (key-gen) and one scalar multiplication with variable (the actual key-exchange) plus an RSA private key operation using the long-term key signing the ephemeral public key.

  • Generating an RSA key is much more expensive, since you need to find two large primes. It's very expensive to generate a new RSA key-pair for each connection.

    The RSA private-key operation is also a bit more expensive than a DH key-exchange with the same security level, but that hasn't stopped us from using RSA with long-term keys.

With ECC the performance gap becomes even wider, especially at higher security levels. 256 bit ECC is pretty common (128 bit security), for equivalent security using RSA you'd need a 3000 bit key.

CodesInChaos
  • 11,854
  • 2
  • 40
  • 50
0

Conversely, RSA key exchange involves the server's secret RSA key, which (EC)DH does not.

This means that even if the attacker obtains means of cracking your RSA key, he will have to expend the cracking effort for each server/key. With (EC)DH, using a logjam-like attack, most of the cracking effort goes to breaking the entire, so-called, algebraic/elliptic group. After that, breaking individual connections is cheap.

So, while RSA key exchange motivates the attacker to crack only the keys of interesting servers, (EC)DH key exchange motivates him to attack as many connections as possible to get the best cost/attack ratio.

If you wonder, why is this property of (Im)perfectForwardSecrecy little known, it is probably because no logjam-like attack against Elliptic Curve Diffie-Hellman key exchange is currently known.

This is supposed to be a follow-up/comment to post https://security.stackexchange.com/a/35472/185953

user185953
  • 80
  • 10