Schnorr signature pain relief
 
  Arthritis Pain Joint Pain Chronic Pain Knee Pain Back Pain Pain Medication  
arthritis pain relief


Arthritis Pain Relief

It's what many of us seek. What causes it and what are it's cures? You'll find your answers to Arthritis and other common forms of pain here.

 

Schnorr signature

A Schnorr signature is a digital signature scheme based on discrete logarithms. It is considered the simplest such scheme to be provably secure in a random oracle model. It is efficient and generates short signatures. It is covered by US patent #4,995,082, which expires in 2008 [1].

Contents

1 References

Choosing parameters

Key generation

  • Choose a private key x such that 0 < x < p
  • The public key is y where y = gx

Signing

To sign a message M:

  • Choose a random k such that 0 < k < p
  • Let r = gk
  • Let e = H(M | | r)
  • Let s=(k-xe) \quad\hbox{mod}\quad p

The signature is the pair (e,s). Note that 0 \le e < p and 0 \le s < p; if a Schnorr group is used and p < 2160, this means that the signature can fit into 40 bytes.

Verifying

  • Let rv = gsye
  • Let ev = H(M | | rv)

If ev = e then the signature is verified.

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

See also: Topics in cryptography

References

  • Claus-Peter Schnorr, Efficient Signature Generation by Smart Cards, J. Cryptology 4(3), pp161–174 (1991) (PS).
Last updated: 08-19-2006 14:43:24