Digital Signature Algorithm
   HOME

TheInfoList



OR:

The Digital Signature Algorithm (DSA) is a
public-key cryptosystem Public-key cryptography, or asymmetric cryptography, is the field of cryptographic systems that use pairs of related keys. Each key pair consists of a public key and a corresponding private key. Key pairs are generated with cryptographic a ...
and
Federal Information Processing Standard The Federal Information Processing Standards (FIPS) of the United States are a set of publicly announced standards that the National Institute of Standards and Technology (NIST) has developed for use in computer systems of non-military United Stat ...
for digital signatures, based on the mathematical concept of modular exponentiation and the discrete logarithm problem. In a digital signature system, there is a keypair involved, consisting of a private and a public key. In this system a signing entity that declared their public key can generate a signature using their private key, and a verifier can assert the source if it verifies the signature correctly using the declared public key. DSA is a variant of the Schnorr and ElGamal signature schemes. The
National Institute of Standards and Technology The National Institute of Standards and Technology (NIST) is an agency of the United States Department of Commerce whose mission is to promote American innovation and industrial competitiveness. NIST's activities are organized into Outline of p ...
(NIST) proposed DSA for use in their Digital Signature Standard (DSS) in 1991, and adopted it as FIPS 186 in 1994. Five revisions to the initial specification have been released. The newest specification is
FIPS 186-5
from February 2023. DSA is patented but NIST has made this patent available worldwide royalty-free. Specificatio
FIPS 186-5
indicates DSA will no longer be approved for digital signature generation, but may be used to verify signatures generated prior to the implementation date of that standard.


Overview

The DSA works in the framework of public-key cryptosystems and is based on the algebraic properties of modular exponentiation, together with the discrete logarithm problem, which is considered to be computationally intractable. 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 Integrity is the quality of being honest and having a consistent and uncompromising adherence to strong moral and ethical principles and values. In ethics, integrity is regarded as the honesty and Honesty, truthfulness or of one's actions. Integr ...
(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).


History

In 1982, the U.S government solicited proposals for a public key signature standard. In August 1991 the
National Institute of Standards and Technology The National Institute of Standards and Technology (NIST) is an agency of the United States Department of Commerce whose mission is to promote American innovation and industrial competitiveness. NIST's activities are organized into Outline of p ...
(NIST) proposed DSA for use in their Digital Signature Standard (DSS). Initially there was significant criticism, especially from
software Software consists of computer programs that instruct the Execution (computing), execution of a computer. Software also includes design documents and specifications. The history of software is closely tied to the development of digital comput ...
companies that had already invested effort in developing digital signature software based on the RSA cryptosystem. Nevertheless, NIST adopted DSA as a Federal standard (FIPS 186) in 1994. Five revisions to the initial specification have been released: FIPS 186–1 in 1998, FIPS 186–2 in 2000, FIPS 186–3 in 2009, FIPS 186–4 in 2013, and FIPS 186–5 in 2023. Standard FIPS 186-5 forbids signing with DSA, while allowing verification of signatures generated prior to the implementation date of the standard as a document. It is to be replaced by newer signature schemes such as EdDSA. DSA is covered by , filed July 26, 1991 and now expired, and attributed to David W. Kravitz, a former NSA employee. This patent was given to "The United States of America as represented by the Secretary of Commerce, Washington, D.C.", and NIST has made this patent available worldwide royalty-free. Claus P. Schnorr claims that his (also now expired) covered DSA; this claim is disputed. In 1993, Dave Banisar managed to get confirmation, via a FOIA request, that the DSA algorithm hasn't been designed by the NIST, but by the NSA. OpenSSH announced that DSA was going to be removed in 2025. The support was entirely dropped in version 10.0.


Operation

The DSA algorithm involves four operations: key generation (which creates the key pair), key distribution, signing and signature verification.


1. Key generation

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.


Parameter generation

* Choose an approved
cryptographic hash function A cryptographic hash function (CHF) is a hash algorithm (a map (mathematics), map of an arbitrary binary string to a binary string with a fixed size of n bits) that has special properties desirable for a cryptography, cryptographic application: ...
H with output length , H, bits. In the original DSS, H was always
SHA-1 In cryptography, SHA-1 (Secure Hash Algorithm 1) is a hash function which takes an input and produces a 160-bit (20-byte) hash value known as a message digest – typically rendered as 40 hexadecimal digits. It was designed by the United States ...
, but the stronger SHA-2 hash functions are approved for use in the current DSS. If , H, is greater than the modulus length N, only the leftmost N bits of the hash output are used. * Choose a key length L. The original DSS constrained L to be a multiple of 64 between 512 and 1024 inclusive. NIST 800-57 recommends lengths of 2048 (or 3072) for keys with security lifetimes extending beyond 2010 (or 2030). * Choose the modulus length N such that N < L and N \leq , H, . FIPS 186-4 specifies L and N to have one of the values: (1024, 160), (2048, 224), (2048, 256), or (3072, 256). * Choose an N-bit prime q. * Choose an L-bit prime p such that p - 1 is a multiple of q. * Choose an integer h randomly from \. * Compute g := h^ \mod p. In the rare case that g=1 try again with a different h. Commonly h=2 is used. This modular exponentiation can be computed efficiently even if the values are large. The algorithm parameters are (p, q, g). These may be shared between different users of the system.


Per-user keys

Given a set of parameters, the second phase computes the key pair for a single user: * Choose an integer x randomly from \. * Compute y := g^x \mod p. x is the private key and y is the public key.


2. Key distribution

The signer should publish the public key y. That is, they should send the key to the receiver via a reliable, but not necessarily secret, mechanism. The signer should keep the private key x secret.


3. Signing

A message m is signed as follows: * Choose an integer k randomly from \ * Compute r := \left(g^\bmod\,p\right)\bmod\,q. In the unlikely case that r=0, start again with a different random k. * Compute s := \left(k^\left(H(m)+xr\right)\right)\bmod\,q. In the unlikely case that s=0, start again with a different random k. The signature is \left(r,s\right) The calculation of k and r amounts to creating a new per-message key. The modular exponentiation in computing r is the most computationally expensive part of the signing operation, but it may be computed before the message is known. Calculating the modular inverse k^\bmod\,q is the second most expensive part, and it may also be computed before the message is known. It may be computed using the
extended Euclidean algorithm In arithmetic and computer programming, the extended Euclidean algorithm is an extension to the Euclidean algorithm, and computes, in addition to the greatest common divisor (gcd) of integers ''a'' and ''b'', also the coefficients of Bézout's id ...
or using
Fermat's little theorem In number theory, Fermat's little theorem states that if is a prime number, then for any integer , the number is an integer multiple of . In the notation of modular arithmetic, this is expressed as a^p \equiv a \pmod p. For example, if and , t ...
as k^\bmod\,q.


4. Signature Verification

One can verify that a signature \left(r,s\right) is a valid signature for a message m as follows: * Verify that 0 < r < q and 0 < s < q. * Compute w := s^ \bmod\,q. * Compute u_1 := H(m) \cdot w\, \bmod\,q. * Compute u_2 := r \cdot w\, \bmod\,q. * Compute v := \left(g^y^ \bmod\,p\right) \bmod\,q. * The signature is valid if and only if v = r.


Correctness of the algorithm

The signature scheme is correct in the sense that the verifier will always accept genuine signatures. This can be shown as follows: First, since g=h^~\text~p, it follows that g^q \equiv h^ \equiv 1 \mod p by
Fermat's little theorem In number theory, Fermat's little theorem states that if is a prime number, then for any integer , the number is an integer multiple of . In the notation of modular arithmetic, this is expressed as a^p \equiv a \pmod p. For example, if and , t ...
. Since g>0 and q is prime, g must have order q. The signer computes :s=k^(H(m)+xr)\bmod\,q Thus : \begin k & \equiv H(m)s^+xrs^\\ & \equiv H(m)w + xrw \pmod \end Since g has order q we have : \begin g^k & \equiv g^g^\\ & \equiv g^y^\\ & \equiv g^y^ \pmod \end Finally, the correctness of DSA follows from :\begin r &= (g^k \bmod\,p) \bmod\,q\\ &= (g^y^ \bmod\,p) \bmod\,q\\ &= v \end


Sensitivity

With DSA, the entropy, secrecy, and uniqueness of the random signature value k are critical. It is so critical that violating any one of those three requirements can reveal the entire private key to an attacker. Using the same value twice (even while keeping k secret), using a predictable value, or leaking even a few bits of k in each of several signatures, is enough to reveal the private key x. This issue affects both DSA and Elliptic Curve Digital Signature Algorithm ( ECDSA) – in December 2010, the group ''fail0verflow'' announced the recovery of the ECDSA private key used by
Sony is a Japanese multinational conglomerate (company), conglomerate headquartered at Sony City in Minato, Tokyo, Japan. The Sony Group encompasses various businesses, including Sony Corporation (electronics), Sony Semiconductor Solutions (i ...
to sign software for the
PlayStation 3 The PlayStation 3 (PS3) is a home video game console developed and marketed by Sony Computer Entertainment (SCE). It is the successor to the PlayStation 2, and both are part of the PlayStation brand of consoles. The PS3 was first released on ...
game console. The attack was made possible because Sony failed to generate a new random k for each signature. This issue can be prevented by deriving k deterministically from the private key and the message hash, as described by . This ensures that k is different for each H(m) and unpredictable for attackers who do not know the private key x. In addition, malicious implementations of DSA and ECDSA can be created where k is chosen in order to subliminally leak information via signatures. For example, an offline private key could be leaked from a perfect offline device that only released innocent-looking signatures.


Implementations

Below is a list of cryptographic libraries that provide support for DSA: * Botan * Bouncy Castle * cryptlib * Crypto++ * libgcrypt *
Nettle Nettle refers to plants with stinging hairs, particularly those of the genus '' Urtica''. It can also refer to plants which resemble ''Urtica'' species in appearance but do not have stinging hairs. Plants called "nettle" include: * ball nettle ...
* OpenSSL * wolfCrypt * GnuTLS


See also

*
Modular arithmetic In mathematics, modular arithmetic is a system of arithmetic operations for integers, other than the usual ones from elementary arithmetic, where numbers "wrap around" when reaching a certain value, called the modulus. The modern approach to mo ...
*
RSA (cryptosystem) The RSA (Rivest–Shamir–Adleman) cryptosystem is a public-key cryptosystem, one of the oldest widely used for secure data transmission. The initialism "RSA" comes from the surnames of Ron Rivest, Adi Shamir and Leonard Adleman, who publi ...
* ECDSA


References


External links


FIPS PUB 186-4: Digital Signature Standard (DSS)
the fourth (and current) revision of the official DSA specification.
Recommendation for Key Management -- Part 1: general
NIST Special Publication 800-57, p. 62–63 {{Cryptography navbox , public-key Public-key cryptography Digital signature schemes Digital Signature Standard 1991 introductions