ElGamal signature scheme

From Wikipedia, the free encyclopedia

The ElGamal signature scheme is a digital signature scheme which is based on the difficulty of computing discrete logarithms. It was described by Taher ElGamal in 1984 (see T. ElGamal, A public key cryptosystem and a signature scheme based on discrete logarithms, IEEE Trans inf Theo, 31:469-472, 1985).

The ElGamal signature algorithm described in this article is rarely used in practice. A variant developed at NSA and known as the Digital Signature Algorithm is much more widely used. There are several other variants (see K. Nyberg and R. A. Rueppel, Message recovery for signature schemes based on the discrete logarithm problem, J Crypt, 8:27-37, 1995). The ElGamal signature scheme must not be confused with ElGamal encryption which was also invented by Taher ElGamal.

The ElGamal signature scheme allows that a verifier can confirm the authenticity of a message m sent by the signer sent to him over an insecure channel.

Contents

[edit] System parameters

These system parameters may be shared between users.

[edit] Key generation

  • Choose randomly a secret key x with 1 < x < p − 1.
  • Compute y = gx(mod p).
  • The public key is (p,g,y).
  • The secret key is x.

These steps are performed once by the signer.

[edit] Signature generation

To sign a message m the signer performs the following steps.

  • Choose a random k such that 0 < k < p − 1 and gcd(k,p − 1) = 1.
  • Compute r \, \equiv \, g^k \pmod p.
  • Compute s \, \equiv \, (H(m)-x r)k^{-1} \pmod{p-1}.
  • If s = 0 start over again.

Then the pair (r,s) is the digital signature of m. The signer repeats these steps for every signature.

[edit] Verification

A signature (r,s) of a message m is verified as follows.

  • 0 < r < p and 0 < s < p − 1.
  • g^{H(m)} \, \equiv \, y^r r^s \pmod p.

The verifier accepts a signature if all conditions are satisfied and rejects it otherwise.

[edit] Correctness

The algorithm is correct in the sense that a signature generated with the signing algorithm will always be accepted by the verifier.

The signature generation implies

H(m) \, \equiv \, x r + s k \pmod{p-1}.

Hence Fermat's little theorem implies

\begin{matrix} g^{H(m)} & \equiv & g^{xr} g^{ks} \\ & \equiv & (g^{x})^r (g^{k})^s \\ & \equiv & (y)^r (r)^s \pmod p.\\ \end{matrix}

[edit] Security

A third party can forge signatures either by finding the signer's secret key x or by finding collisions in the hash function H(m) \equiv H(M) \pmod{p-1}. Both problems are believed to be difficult.

The signer must be careful to choose a different k uniformly at random for each signature and to be certain that k, or even partial information about k, is not leaked. Otherwise, an attacker may be able to deduce the secret key x with reduced difficulty, perhaps enought to be a practical attack. In particular, if two messages are sent using the same value of k and the same key, then an attacker can compute x directly.

[edit] See also

In other languages