In cryptography, a Schnorr signature is a digital signature produced by the Schnorr signature algorithm that was described by Claus Schnorr. It is a digital signature scheme known for its simplicity, among the first whose security is based on the intractability of certain discrete logarithm problems. It is efficient and generates short signatures.1 It was covered by U.S. patent 4,995,082 which expired in February 2010.
Algorithm
Choosing parameters
- All users of the signature scheme agree on a group of prime order with generator 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 .
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 the set of congruence classes
- , the set of finite bit strings
- , the set of congruence classes modulo
- .
Key generation
- Choose a private signing key from the allowed set.
- The public verification key is .
Signing
To sign a message :
- Choose a random from the allowed set.
- Let .
- Let , where denotes concatenation and is represented as a bit string.
- Let .
The signature is the pair, .
Note that ; if , then the signature representation can fit into 64 bytes.
Verifying
- Let
- Let
If then the signature is verified.
Proof of correctness
It is relatively easy to see that if the signed message equals the verified message:
, and hence .
Public elements: , , , , , , . Private elements: , .
This shows only that a correctly signed message will verify correctly; many other properties are required for a secure signature algorithm.
Key leakage from nonce reuse
Just as with the closely related signature algorithms DSA, ECDSA, and ElGamal, reusing the secret nonce value on two Schnorr signatures of different messages will allow observers to recover the private key.2 In the case of Schnorr signatures, this simply requires subtracting values:
.
If but then can be simply isolated. In fact, even slight biases in the value or partial leakage of can reveal the private key, after collecting sufficiently many signatures and solving the hidden number problem.2
Security argument
The signature scheme was constructed by applying the FiatâShamir transformation 3 to Schnorrâs identification protocol.4 5 Therefore, (as per Fiat and Shamirâs arguments), it is secure if is modeled as a random oracle.
Its security can also be argued in the generic group model, under the assumption that is ârandom-prefix preimage resistantâ and ârandom-prefix second-preimage resistantâ.6 In particular, does not need to be collision resistant.
In 2012, Seurin 1 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 in its time-to-success ratio, where is a function that remains close to 1 as long as â is noticeably smaller than 1â, where is the probability of forging an error making at most queries to the random oracle.
Short Schnorr signatures
The aforementioned process achieves a t -bit security level with 4 t -bit signatures. For example, a 128-bit security level would require 512-bit (64-byte) signatures. The security is limited by discrete logarithm attacks on the group, which have a complexity of the square-root of the group size.
In Schnorrâs original 1991 paper, it was suggested that since collision resistance in the hash is not required, shorter hash functions may be just as secure, and indeed recent developments suggest that a t -bit security level can be achieved with 3 t -bit signatures.6 Then, a 128-bit security level would require only 384-bit (48-byte) signatures, and this could be achieved by truncating the size of e until it is half the length of the s bitfield.
Implementations
Schnorr signature is used by numerous products. A notable usage is the deterministic Schnorrâs signature using the secp256k1 elliptic curve for Bitcoin transaction signature after the Taproot update.7
See also
References
External links
- Seurin, Yannick (2012-01-12). âOn the Exact Security of Schnorr-Type Signatures in the Random Oracle Modelâ. Cryptology ePrint Archive. International Association for Cryptologic Research. Retrieved 2023-02-06.â© â©
- Tibouchi, Mehdi (2017-11-13). âAttacks on Schnorr signatures with biased noncesâ (PDF). ECC Workshop. Retrieved 2023-02-06.â© â©
- Fiat, Amos; Shamir, Adi (1987). âHow to Prove Yourself: Practical Solutions to Identification and Signature Problemsâ. In Andrew M. Odlyzko (ed.). Advances in Cryptology. Conference on the Theory and Application of Cryptographic Techniques. Proceedings of CRYPTO â86. Lecture Notes in Computer Science. Vol. 263. pp. 186â 194. doi:10.1007/3-540-47721-7_12. ISBN 978-3-540-18047-0. S2CID 4838652.â©
- Schnorr, C. P. (1990). âEfficient Identification and Signatures for Smart Cardsâ. In Gilles Brassard (ed.). Advances in Cryptology. Conference on the Theory and Application of Cryptographic Techniques. Proceedings of CRYPTO â89. Lecture Notes in Computer Science. Vol. 435. pp. 239â 252. doi:10.1007/0-387-34805-0_22. ISBN 978-0-387-97317-3. S2CID 5526090.â©
- Schnorr, C. P. (1991). âEfficient signature generation by smart cardsâ. Journal of Cryptology. 4 (3): 161â 174. doi:10.1007/BF00196725. S2CID 10976365.â©
- Neven, Gregory; Smart, Nigel; Warinschi, Bogdan. âHash Function Requirements for Schnorr Signaturesâ. IBM Research. Retrieved 19 July 2012.â© â©
- Wuille, Pieter; Nick, Jonas; Ruffing, Tim. âBIP340: Schnorr Signatures for secp256k1â. GitHub. Retrieved 2024-11-11.â©