Suvarna Garge (Editor)

Schnorr signature

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

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. The Schnorr signature is considered the simplest digital signature scheme to be provably secure in a random oracle model. It is efficient and generates short signatures. It was covered by U.S. Patent 4,995,082 which expired in February 2008.

Contents

Choosing parameters

  • All users of the signature scheme agree on a group, G , of prime order, q , with generator, g , in which the discrete log problem is assumed to be hard. Typically a Schnorr group is used.
  • All users agree on a cryptographic hash function H : { 0 , 1 } Z q .
  • 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 { 0 , 1 } , the set of finite bit strings
  • s , e , e v Z q , the set of congruence classes modulo q
  • x , k Z q × , the multiplicative group of integers modulo q (for prime q , Z q × = Z q 0 ¯ q )
  • y , r , r v G .
  • Key generation

  • Choose a private signing key, x , from the allowed set.
  • The public verification key is y = g x .
  • 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 x e .
  • The signature is the pair, ( s , e ) .

    Note that s , e Z q ; if q < 2 160 , then the signature representation can fit into 40 bytes.

    Verifying

  • Let r v = g s y e
  • Let e v = H ( M r v )
  • If e v = e then the signature is verified.

    Proof 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 x e g x e = g k = r , and hence e v = H ( M r v ) = H ( M r ) = e .

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

    This shows only that a correctly signed message will verify correctly; many other properties are required for a secure signature algorithm.

    Security argument

    The signature scheme was constructed by applying the Fiat–Shamir transform to Schnorr's identification protocol. Therefore, (per Fiat and Shamir's arguments), it is secure if H is modeled as a random oracle.

    Its security can also be argued in the generic group model, under the assumption that H is "random-prefix preimage resistant" and "random-prefix second-preimage resistant". In particular, H does not need to be collision resistant.

    In 2012, Seurin provided an exact proof of the Schnorr signature scheme. In particular, Seurin shows that the security proof using the Forking lemma is the best possible result for any signature schemes based on one-way group homomorphisms including Schnorr-Type signatures and the Guillou-Quisquater signature schemes. Namely, under the ROMDL assumption, any algebraic reduction must lose a factor f ( ϵ F ) q h in its time-to-success ratio, where f 1 is a function that remains close to 1 as long as " ϵ F is noticeably smaller than 1", where ϵ F is the probability of forging an error making at most q h queries to the random oracle.

    References

    Schnorr signature Wikipedia


    Similar Topics