- ElGamal signature scheme
The ElGamal signature scheme is a
digital signature scheme which is based on the difficulty of computingdiscrete logarithm s. It was described byTaher ElGamal in1984 (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 theDigital 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, Designs, Codes and Cryptography, 7:61–81, 1996). The ElGamal signature scheme must not be confused withElGamal 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.
ystem parameters
* Let "H" be a collision-resistant hash function.
* Let "p" be a large prime such that computingdiscrete logarithm s modulo "p" is difficult.
* Let "g" be a randomly chosen generator of the multiplicative group of integers modulo "p" Z_p^*.These system parameters may be shared between users.
Key generation
* Choose randomly a secret key "x" with 1 < "x" < "p" − 1.
* Compute "y" = "g" "x" mod "p".
* The public key is ("p", "g", "y").
* The secret key is "x".These steps are performed once by the signer.ignature 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.Verification
A signature ("r","s") of a message "m" is verified as follows.
* 0and 0 .
* g^{H(m)} , equiv , y^r r^s pmod p.The verifier accepts a signature if all conditions are satisfied and rejects it otherwise.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 :egin{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}ecurity
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 enough to allow 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.
See also
*
Digital Signature Algorithm
*Elliptic Curve DSA
*ElGamal encryption
Wikimedia Foundation. 2010.