

Diffie-Hellman Protocol
The Diffie-Hellman protocol is a method for two computer users to generate a shared private key with which they can then exchange information across an insecure channel. Let the users be named Alice and Bob. First, they agree on two prime numbers and
, where
is large (typically at least 512 bits) and
is aprimitive root modulo
. (In practice, it is a good idea to choose
such that
is also prime.) The numbers
and
need not be kept secret from other users. Now Alice chooses a large random number
as her private key and Bob similarly chooses a large number
. Alice then computes
, which she sends to Bob, and Bob computes
, which he sends to Alice.
Now both Alice and Bob compute their shared key, which Alice computes as
and Bob computes as
Alice and Bob can now use their shared key to exchange information without worrying about other users obtaining this information. In order for a potential eavesdropper (Eve) to do so, she would first need to obtain
knowing only
,
,
and
.
This can be done by computing from
or
from
. This is thediscrete logarithm problem, which is computationally infeasible for large
. Computing the discrete logarithm of a number modulo
takes roughly the same amount of time as factoring the product of two primes the same size as
, which is what the security of the RSA cryptosystem relies on. Thus, the Diffie-Hellman protocol is roughly as secure as RSA.
See also
Cryptography,Public-KeyCryptography,RSA EncryptionThis entry contributed byDavid Terr
Explore with Wolfram|Alpha

References
Diffie, W. and Hellman, M. "New Directions in Cryptography."IEEE Trans. Info. Th.22, 644-654, 1976.Hershey, J. E.Cryptography Demystified. New York: McGraw-Hill, pp. 162-166, 2003.Schneier, BApplied Cryptography: Protocols, Algorithms, and Source Code in C, 2nd ed. New York: Wiley, pp. 513-516, 1996.Referenced on Wolfram|Alpha
Diffie-Hellman ProtocolCite this as:
Terr, David. "Diffie-Hellman Protocol." FromMathWorld--A Wolfram Resource, created byEric W. Weisstein.https://mathworld.wolfram.com/Diffie-HellmanProtocol.html