Jump to content

Unbalanced oil and vinegar scheme: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
grammatical error: "The equations are build" changed to "The equations are built"
→‎References: fixing broken link
Line 64: Line 64:
*[http://www.win.tue.nl/diamant/symposium05/abstracts/wolf.pdf Wolf, Christopher: Multivariate Quadratic Polynomials in Public Key Cryptography, DIAMANT/EIDMA symposium 2005]
*[http://www.win.tue.nl/diamant/symposium05/abstracts/wolf.pdf Wolf, Christopher: Multivariate Quadratic Polynomials in Public Key Cryptography, DIAMANT/EIDMA symposium 2005]
*[http://citeseer.ist.psu.edu/707018.html Braeken, An; Wolf, Christopher; Preneel, Bart: A Study of the Security of Unbalanced Oil and Vinegar Signature Schemes, ESAT-COSIC, September 2. 2004]
*[http://citeseer.ist.psu.edu/707018.html Braeken, An; Wolf, Christopher; Preneel, Bart: A Study of the Security of Unbalanced Oil and Vinegar Signature Schemes, ESAT-COSIC, September 2. 2004]
*[http://www.ecrypt.eu.org/documents/D.AZTEC.6.pdf Coron, Jean-Sebastien; de Weger, Benne: Hardness of the Main Computational Problems Used in Cryptography, ECRYPT D.AZTEC.6, March 14. 2007]
*[http://www.ecrypt.eu.org/ecrypt1/documents/D.AZTEC.6.pdf Coron, Jean-Sebastien; de Weger, Benne: Hardness of the Main Computational Problems Used in Cryptography, ECRYPT D.AZTEC.6, March 14. 2007]
*[http://citeseer.ist.psu.edu/kipnis99unbalanced.html Kipnis, Aviad: Unbalanced Oil and Vinegar Signature Schemes – extended version, EURO-CRYPT, 1999]
*[http://citeseer.ist.psu.edu/kipnis99unbalanced.html Kipnis, Aviad: Unbalanced Oil and Vinegar Signature Schemes – extended version, EURO-CRYPT, 1999]



Revision as of 17:09, 10 April 2013

In cryptography, the Unbalanced Oil and Vinegar scheme is a modified version of the Oil and Vinegar scheme designed by J. Patarin. Both are digital signature schemes. They belong to the group of multivariate cryptography. The security of this signature scheme is based on an NP-hard mathematical problem. To create and validate signatures a minimal quadratic equations system has to be solved. Solving m equations with n variables is an NP-hard problem, even when using a real existing quantum computer. Therefore the signature schemes based on multivariate equations systems are considered to be quantum resistant.

Public and private key

Every asymmetric scheme has a public and a private key (public-key cryptography). In known schemes like RSA the keys are bit strings. In the UOV scheme, and in every other multivariate signature scheme the keys are more complex.

The mathematical problem is to solve equations with variables. The whole equations system is the public key.

To use a mathematical problem for cryptography it has to be modified. The computing of the variables would need a lot of resources. A standard computer isn't able to compute this in an acceptable time. Therefore a special Trapdoor gets insert in the equations system. This trapdoor is the private key. It consists of three parts: Two affine transformations and and a polynomial vector . Both transformations are used to transform elements in certain groups. transforms to . The second transformation transforms the variable vector to the valid signature.

The third secret element provides certain tools for the equations creation. The equations are built with certain rules which are only known to the owner of the private key.

Creation of a signature

To create a valid signature the following equations system has to be solved

Here the is a given message which should be signed. The valid signature is .

To sign a given certain steps have to be performed. At first the message has to be transformed to fit in the equations system. is used to "split" the message to acceptable pieces . Then the equations have to be built. Every single equation has the same form:

The next steps sign a given message and the result is a valid signature .

  1. The secret coefficients () must be chosen secretly.
  2. The vinegar variables () are chosen randomly
  3. The resulting linear equations system gets solved for the oil variables ()

The vinegar and oil variables build the pre-signature . Finally gets transformed by the private affine transformation to , the valid signature.
The great advantage is, that the equations system get linear if the vinegar variables are fixed. No oil variable is multiplied with another oil variable in the equation. Therefore the oil variables can be computed for example with the help of the Gaussian reduction algorithm. The signature creation is fast and computational easy.

Validation of a signature

The signature is transmitted to the communication partner. The validation of the signature is performed with the help of the public key, which is an equations system.

This equations system is a slight modified version of the system needed for signature creation. It is modified, because an attacker should not get information about the secret coefficients and the special formatting of the oil and vinegar variables. Every equation of these public key has to be solved, to validate the signature. The input is the signature itself. If every result is equal to the corresponding part of the original message, the verification succeeded.

Problems and advantages of the UOV scheme

A great advantage is certainly that the mathematical problem, which is used for this signature scheme, is quantum resistant. If someday a quantum computer is built that can handle enough states to break commercial signature schemes like RSA or ElGamal, the Unbalanced Oil and Vinegar signature scheme keeps secure. Today no algorithm exists that gives a quantum computer a great advantage in solving the multivariate equations systems.

The second advantage are the inner operations. Signatures get created and validated only with addition and multiplication of "small" values. Especially for systems with very small resources this signature scheme may be interesting (smart card).

Problems of this signature scheme are the key-lengths. The public key is a whole equations system. Someone who wants to verify a signature needs all equations to compute and compare it with the original message. The public key is in the range of some Kilobytes.

The UOV scheme is a young digital signature scheme. Some attacks are known and prevented at present[citation needed], but certainly in the next years other attacks will follow. The actual state of the art can't be used for commercial purposes.

References