The ElGamal signature scheme is a digital signature scheme based on the algebraic properties of modular exponentiation, together with the discrete logarithm problem. The algorithm uses a key pair consisting of a public key and a private key. The private key is used to generate a digital signature for a message, and such a signature can be verified by using the signer's corresponding public key. The digital signature provides message authentication (the receiver can verify the origin of the message), integrity (the receiver can verify that the message has not been modified since it was signed) and non-repudiation (the sender cannot falsely claim that they have not signed the message).
The ElGamal signature scheme was described by Taher Elgamal in 1985.3 It is based on the Diffie–Hellman problem.
The scheme involves four operations: key generation (which creates the key pair), key distribution, signing and signature verification.
Key generation has two phases. The first phase is a choice of algorithm parameters which may be shared between different users of the system, while the second phase computes a single key pair for one user.
The algorithm parameters are ( p , g ) {\displaystyle (p,g)} . These parameters may be shared between users of the system.
Given a set of parameters, the second phase computes the key pair for a single user:
x {\displaystyle x} is the private key and y {\displaystyle y} is the public key.
The signer should send the public key y {\displaystyle y} to the receiver via a reliable, but not necessarily secret, mechanism. The signer should keep the private key x {\displaystyle x} secret.
A message m {\displaystyle m} is signed as follows:
The signature is ( r , s ) {\displaystyle (r,s)} .
One can verify that a signature ( r , s ) {\displaystyle (r,s)} is a valid signature for a message m {\displaystyle m} as follows:
The algorithm is correct in the sense that a signature generated with the signing algorithm will always be accepted by the verifier.
The computation of s {\displaystyle s} during signature generation implies
Since g {\displaystyle g} is relatively prime to p {\displaystyle p} ,
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 ) ≡ H ( M ) ( mod p − 1 ) {\displaystyle H(m)\equiv H(M){\pmod {p-1}}} . Both problems are believed to be difficult. However, as of 2011 no tight reduction to a computational hardness assumption is known.
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.4
The original paper5 did not include a hash function as a system parameter. The message m was used directly in the algorithm instead of H(m). This enables an attack called existential forgery, as described in section IV of the paper. Pointcheval and Stern generalized that case and described two levels of forgeries:6
Taher ElGamal (1985). "A Public-Key Cryptosystem and a Signature Scheme Based on Discrete Logarithms" (PDF). IEEE Transactions on Information Theory. 31 (4): 469–472. CiteSeerX 10.1.1.476.4791. doi:10.1109/TIT.1985.1057074. S2CID 2973271. (conference version appeared in CRYPTO'84, pp. 10–18) https://caislab.kaist.ac.kr/lecture/2010/spring/cs548/basic/B02.pdf ↩
K. Nyberg, R. A. Rueppel (1996). "Message recovery for signature schemes based on the discrete logarithm problem". Designs, Codes and Cryptography. 7 (1–2): 61–81. doi:10.1007/BF00125076. S2CID 123533321. https://link.springer.com/chapter/10.1007/BFb0053434 ↩
Pointcheval, David; Stern, Jacques (2000). "Security Arguments for Digital Signatures and Blind Signatures" (PDF). J Cryptology. 13 (3): 361–396. CiteSeerX 10.1.1.208.8352. doi:10.1007/s001450010003. S2CID 1912537. Archived from the original (PDF) on 2021-04-22. Retrieved 2019-08-17. /wiki/Jacques_Stern ↩