Lenstra-Lenstra-Lovász(LLL) algorithm

Given a basis {v1,,vn} 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 {v1,,vn} using the Gram-Schmidt process. However, the GS process contains divisions so the result {vi} does not generate the same lattice. So, we need more processes called the Lenstra-Lenstra-Lovász(LLL) algorithm.

LLL-reduced Condition

We first define the notion of "nearly orthogonal". Given a basis {vi}, after the GS process we have orthogonal {vi} and let μi,j=vivjvjvj for all j<i. μi,j are the entries of the upper triangular matrix in the QR decomposition.

The basis {vi} is called to satisfy the Size Condition, if
μi,j12
for all j<i. If vi were orthogonal, then μi,j=0 for all j<i. So, the size condition roughly says that the new vi does not contain too much information(length of vectors) from vj.

Next, the basis {vi} is called to satisfy the Lovász Condition, if
34vi2vi+12+μi+1,i2vi2
for all i. Note that vi and vi+1+μi+1,ivi are respectively projections of vi and vi+1 onto Span{v1,,vi1}. I mentioned that μi,j measures the information contained in vi associated with vj. To achieve orthogonal property, every vi should contain enough information not associated with others. The size condition says that vi does not contain too much information from vj. But this is not enough if vi is too small so that vi satisfies the size condition but does not contain its own information enough. The Lovász condition assures that the vi contains at least 34 new information. A basis {vi} 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 j<i, we may replace vi into viavj for some aZ, then
|(viavj)vj|vj2=|vivj|vj2a since GS process garuantees vjvj=vjvj. The appropriate a is the closest integer to μi,j. 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 j<i, we check the Lovász condition. If the Lovász condition does not hold for i, we swap vi and vi+1 then implement size reduction again. One can show that this procedure terminates in a finite step, precisely O(n2(logn+logmaxvi)). In terms of basic operation, the algorithm needs O(n6log3maxvi) operations. I refer to Wikipedia for the detailed algorithm.

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, n 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
κ=1+2n(92)n2.
For a better result (smaller κ), we introduce Babai's closest plane algorithm. Unlike the rounding-off algorithm, this uses GS basis. Given a basis {vi}, let {vi} be the GS basis (their entries can be represented in Q). 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 2n/2-CVP$ which is a lot better than the rounding-off algorithm.

댓글