Given a basis of a lattice, we observed that the basis is good if it is "nearly orthogonal". So, we may make the given basis into a mutually orthogonal basis using the Gram-Schmidt process. However, the GS process contains divisions so the result does not generate the same lattice. So, we need more processes called the Lenstra-Lenstra-Lovász(LLL) algorithm.
since GS process garuantees . The appropriate is the closest integer to . So we can make any basis to satisfy the size condition. The LLL algorithm is a repetition of size reduction and vector swap. After the size reduction for each , we check the Lovász condition. If the Lovász condition does not hold for , we swap and then implement size reduction again. One can show that this procedure terminates in a finite step, precisely . In terms of basic operation, the algorithm needs operations. I refer to Wikipedia for the detailed algorithm.
LLL-reduced Condition
We first define the notion of "nearly orthogonal". Given a basis , after the GS process we have orthogonal and let for all . are the entries of the upper triangular matrix in the QR decomposition.
The basis is called to satisfy the Size Condition, if
for all . If were orthogonal, then for all . So, the size condition roughly says that the new does not contain too much information(length of vectors) from .
Next, the basis is called to satisfy the Lovász Condition, if
for all . Note that and are respectively projections of and onto . I mentioned that measures the information contained in associated with . To achieve orthogonal property, every should contain enough information not associated with others. The size condition says that does not contain too much information from . But this is not enough if is too small so that satisfies the size condition but does not contain its own information enough. The Lovász condition assures that the contains at least new information. A basis is called LLL-reduced if it satisfies both the size condition and Lovász condition.
LLL algorithm
If the size condition does not hold for some , we may replace into for some , then
If an LLL-reduced basis can be obtained easily, the private key of a lattice-based cryptosystem can be revealed. For the security of the cryptosystem, should be large enough so that the LLL algorithm can not work.
Babai's closest plane algorithm
In the previous post, we've seen Babai's rounding-off algorithm. With an LLL-reduced basis, the rounding-off algorithm can solve -CVP for
For a better result (smaller ), we introduce Babai's closest plane algorithm. Unlike the rounding-off algorithm, this uses GS basis. Given a basis , let be the GS basis (their entries can be represented in ). Here is the algorithm explained in Mathematics of Public Key Cryptography by Steven Galbraith
With an LLL-reduced basis, Babai's closest plane algorithm can solve -CVP$ which is a lot better than the rounding-off algorithm.
댓글
댓글 쓰기