Schnorr signature

From Wikipedia, the free encyclopedia
Jump to: navigation, search

In cryptography, a Schnorr signature is a digital signature produced by the Schnorr signature algorithm. Its security is based on the intractability of certain discrete logarithm problems. It is considered the simplest digital signature scheme to be provably secure in a random oracle model[citation needed]. It is efficient and generates short signatures. It is covered by U.S. Patent 4,995,082, which expired in February 2008.

Contents

[edit] Algorithm

[edit] Choosing parameters

[edit] Notation

In the following,

  • Exponentiation stands for repeated application of the group operation
  • Juxtaposition stands for multiplication on the set of congruence classes or application of the group operation (as applicable)
  • Subtraction stands for subtraction on set of equivalence groups
  • M \in \{0,1\}^*, the set of finite bit strings
  • x, k \in \mathbb{Z}_q^*, the set of congruence classes modulo q excluding \overline{0}_q
  • s, e, e_v \in \mathbb{Z}_q, the set of congruence classes modulo q
  • y, r, r_v \in G.

[edit] Key generation

  • Choose a private signing key x from the allowed set.
  • The public verification key is y = g^x.

[edit] Signing

To sign a message M:

  • Choose a random k from the allowed set.
  • Let r = g^k.
  • Let e = H(M || r), where || denotes concatenation and r is represented as a bit string.
  • Let s = (k - xe).

The signature is the pair (s,e).

Note that s, e \in \mathbb{Z}_q; if q < 2^{160}, then the signature representation can fit into 40 bytes.

[edit] Verifying

  • Let r_v = g^s y^e
  • Let e_v = H(M || r_v)

If e_v=e then the signature is verified.

[edit] Demonstration of correctness

It is relatively easy to see that e_v = e if the signed message equals the verified message:

r_v = g^s y^e = g^{k - xe} g^{xe} = g^k = r, and hence e_v = H(M || r_v) = H(M || r) = e.

The other direction goes through using the fact that k<q and the assumption that the hash function is collision-resistant[clarification needed].

Public elements: G, g, q, y, s, e, r. Private elements: k, x.

[edit] See also

[edit] References

  • C.P. Schnorr, Efficient identification and signatures for smart cards, in G. Brassard, ed. Advances in Cryptology—Crypto '89, 239-252, Springer-Verlag, 1990. Lecture Notes in Computer Science, nr 435
  • Claus-Peter Schnorr, Efficient Signature Generation by Smart Cards, J. Cryptology 4(3), pp161–174 (1991) (PS).
  • Menezes, Alfred J. et al. Handbook of Applied Cryptography CRC Press. 1996.
Personal tools
Namespaces

Variants
Actions
Navigation
Interaction
Toolbox
Print/export
Languages