Supriya Ghosh (Editor)

Digital Signature Algorithm

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

The Digital Signature Algorithm (DSA) is a Federal Information Processing Standard for digital signatures. In August 1991 the National Institute of Standards and Technology (NIST) proposed DSA for use in their Digital Signature Standard (DSS) and adopted it as FIPS 186 in 1993. Four revisions to the initial specification have been released: FIPS 186-1 in 1996, FIPS 186-2 in 2000, FIPS 186-3 in 2009, and FIPS 186-4 in 2013.

Contents

DSA is covered by U.S. Patent 5,231,668, filed July 26, 1991 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 U.S. Patent 4,995,082 (expired) covered DSA; this claim is disputed. DSA is a variant of the ElGamal Signature Scheme.

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 public and private keys for a single user.

Parameter generation

  • Choose an approved cryptographic hash function H. In the original DSS, H was always SHA-1, but the stronger SHA-2 hash functions are approved for use in the current DSS. The hash output may be truncated to the size of a key pair.
  • Decide on a key length L and N. This is the primary measure of the cryptographic strength of the key. The original DSS constrained L to be a multiple of 64 between 512 and 1,024 (inclusive). NIST 800-57 recommends lengths of 2,048 (or 3,072) for keys with security lifetimes extending beyond 2010 (or 2030), using correspondingly longer N. FIPS 186-3 specifies L and N length pairs of (1,024, 160), (2,048, 224), (2,048, 256), and (3,072, 256). N must be less than or equal to the output length of the hash H.
  • Choose an N-bit prime q.
  • Choose an L-bit prime modulus p such that p − 1 is a multiple of q.
  • Choose g, a number whose multiplicative order modulo p is q. This may be done by setting g = h(p − 1)/q mod p for some arbitrary h (1 < h < p − 1), and trying again with a different h if the result comes out as 1. Most choices of h will lead to a usable g; commonly h = 2 is used.
  • The algorithm parameters (p, q, g) may be shared between different users of the system.

    Per-user keys

    Given a set of parameters, the second phase computes private and public keys for a single user:

  • Choose a secret key x by some random method, where 0 < x < q.
  • Calculate the public key y = gx mod p.
  • There exist efficient algorithms for computing the modular exponentiations h(p − 1)/q mod p and gx mod p, such as exponentiation by squaring.

    Signing

    Let H be the hashing function and m the message:

  • Generate a random per-message value k where 0 < k < q
  • Calculate r = ( g k mod p ) mod q
  • In the unlikely case that r = 0 , start again with a different random k
  • Calculate s = k 1 ( H ( m ) + x r ) mod q
  • In the unlikely case that s = 0 , start again with a different random k
  • The signature is ( r , s )
  • The first two steps amount to creating a new per-message key. The modular exponentiation here is the most computationally expensive part of the signing operation, and it may be computed before the message hash is known. The modular inverse k 1 mod q is the second most expensive part, and it may also be computed before the message hash is known. It may be computed using the extended Euclidean algorithm or using Fermat's little theorem as k q 2 mod q .

    Verifying

  • Reject the signature if 0 < r < q or 0 < s < q is not satisfied.
  • Calculate w = s 1 mod q
  • Calculate u 1 = H ( m ) w mod q
  • Calculate u 2 = r w mod q
  • Calculate v = ( g u 1 y u 2 mod p ) mod q
  • The signature is invalid unless v = r
  • DSA is similar to the ElGamal signature scheme.

    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, if g = h ( p 1 ) / q   mod   p , it follows that g q h p 1 1 mod p by Fermat's little theorem. Since g > 0 and q is prime, g must have order  q .

    The signer computes

    s = k 1 ( H ( m ) + x r ) mod q

    Thus

    k H ( m ) s 1 + x r s 1 H ( m ) w + x r w ( mod q )

    Since g has order q   ( mod   p ) we have

    g k g H ( m ) w g x r w g H ( m ) w y r w g u 1 y u 2 ( mod p )

    Finally, the correctness of DSA follows from

    r = ( g k mod p ) mod q = ( g u 1 y u 2 mod p ) mod q = v

    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 break DSA.

    This issue affects both DSA and ECDSA – in December 2010, a group calling itself fail0verflow announced recovery of the ECDSA private key used by Sony to sign software for the PlayStation 3 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 RFC 6979. This ensures that k is different for each H(m) and unpredictable for attackers who do not know the private key x.

    References

    Digital Signature Algorithm Wikipedia