HOME

TheInfoList



OR:

The Lightweight Encryption Algorithm (also known as LEA) is a 128-bit
block cipher In cryptography, a block cipher is a deterministic algorithm operating on fixed-length groups of bits, called ''blocks''. Block ciphers are specified cryptographic primitive, elementary components in the design of many cryptographic protocols and ...
developed by South Korea in 2013 to provide confidentiality in high-speed environments such as
big data Though used sometimes loosely partly because of a lack of formal definition, the interpretation that seems to best describe Big data is the one associated with large body of information that we could not comprehend when used only in smaller am ...
and cloud computing, as well as lightweight environments such as IoT devices and mobile devices. LEA has three different key lengths: 128, 192, and 256 bits. LEA encrypts data about 1.5 to 2 times faster than
AES AES may refer to: Businesses and organizations Companies * AES Corporation, an American electricity company * AES Data, former owner of Daisy Systems Holland * AES Eletropaulo, a former Brazilian electricity company * AES Andes, formerly AES Gener ...
, the most widely used block cipher in various software environments. LEA is one of the cryptographic algorithms approved by the Korean Cryptographic Module Validation Program (KCMVP) and is the national standard of Republic of Korea (KS X 3246). LEA is included in the ISO/IEC 29192-2:2019 standard (Information security - Lightweight cryptography - Part 2: Block ciphers).


Specification

The block cipher LEA consisting of ARX operations (modular Addition: \boxplus, bitwise Rotation: \lll, \ggg, and bitwise XOR \oplus) for 32-bit words processes data blocks of 128 bits and has three different key lengths: 128, 192, and 256 bits. LEA with a 128-bit key, LEA with a 192-bit key, and LEA with a 256-bit key are referred to as “LEA-128”, “LEA-192”, and “LEA-256”, respectively. The number of rounds is 24 for LEA-128, 28 for LEA-192, and 32 for LEA-256.


Encryption

Let P = P \, P \, P \, P be a 128-bit block of plaintext and C = C \, C \, C \, C be a 128-bit block of ciphertext, where P and C ( 0 \le i < 4 ) are 32-bit blocks. Let K_ = K_ \, K_ \, K_ \, K_ \, K_ \, K_ ( 0 \le i < Nr ) be 192-bit round keys, where K_ ( 0 \le j < 6 ) are 32-bit blocks. Here Nr is the number of rounds for the LEA algorithm. The encryption operation is described as follows: # X_ \, X_ \, X_ \, X_ \leftarrow P \, P \, P \, P # for i=0 to Nr - 1 ## X_ \leftarrow \left( \left( X_ \oplus K_ \right) \boxplus \left( X_ \oplus K_ \right) \right) \lll 9 ## X_ \leftarrow \left( \left( X_ \oplus K_ \right) \boxplus \left( X_ \oplus K_ \right) \right) \ggg 5 ## X_ \leftarrow \left( \left( X_ \oplus K_ \right) \boxplus \left( X_ \oplus K_ \right) \right) \ggg 3 ## X_ \leftarrow X_ # C \, C \, C \, C \leftarrow X_ \, X_ \, X_ \, X_


Decryption

The decryption operation is as follows: # X_ \, X_ \, X_ \, X_ \leftarrow C \, C \, C \, C # for i=(Nr-1) down to 0 ## X_ \leftarrow X_ ## X_ \leftarrow \left( \left( X_ \ggg 9 \right) \boxminus \left( X_ \oplus K_ \right) \right) \oplus K_ ## X_ \leftarrow \left( \left( X_ \lll 5 \right) \boxminus \left( X_ \oplus K_ \right) \right) \oplus K_ ## X_ \leftarrow \left( \left( X_ \lll 3 \right) \boxminus \left( X_ \oplus K_ \right) \right) \oplus K_ # P \, P \, P \, P \leftarrow X_ \, X_ \, X_ \, X_


Key schedule

The key schedule of LEA supports 128, 192, and 256-bit keys and outputs 192-bit round keys K_ ( 0 \le i < Nr ) for the data processing part.


Key schedule for LEA-128

Let K = K \, K \, K \, K be a 128-bit key, where K ( 0 \le i < 4 ) are 32-bit blocks. The key schedule for LEA-128 takes K and four 32-bit constants \delta ( 0 \le i < 4 ) as inputs and outputs twenty-four 192-bit round keys K_ ( 0 \le i < 24 ). The key schedule operation for LEA-128 is as follows: # T \, T \, T \, T \leftarrow K \, K \, K \, K # for i=0 to 23 ## T \leftarrow \left( T \boxplus \left( \delta \mod 4\lll i \right) \right) \lll 1 ## T \leftarrow \left( T \boxplus \left( \delta \mod 4\lll \left( i + 1 \right) \right) \right) \lll 3 ## T \leftarrow \left( T \boxplus \left( \delta \mod 4\lll \left( i + 2 \right) \right) \right) \lll 6 ## T \leftarrow \left( T \boxplus \left( \delta \mod 4\lll \left( i + 3 \right) \right) \right) \lll 11 ## K_ \leftarrow T \, T \, T \, T \, T \, T


Key schedule for LEA-192

Let K = K \, K \, K \, K \, K \, K be a 192-bit key, where K ( 0 \le i < 6 ) are 32-bit blocks. The key schedule for LEA-192 takes K and six 32-bit constants \delta ( 0 \le i < 6 ) as inputs and outputs twenty-eight 192-bit round keys K_ ( 0 \le i < 28 ). The key schedule operation for LEA-192 is as follows: # T \, T \, T \, T \, T \, T \leftarrow K \, K \, K \, K \, K \, K # for i=0 to 27 ## T \leftarrow \left( T \boxplus \left( \delta \mod 6\lll i \right) \right) \lll 1 ## T \leftarrow \left( T \boxplus \left( \delta \mod 6\lll \left( i + 1 \right) \right) \right) \lll 3 ## T \leftarrow \left( T \boxplus \left( \delta \mod 6\lll \left( i + 2 \right) \right) \right) \lll 6 ## T \leftarrow \left( T \boxplus \left( \delta \mod 6\lll \left( i + 3 \right) \right) \right) \lll 11 ## T \leftarrow \left( T \boxplus \left( \delta \mod 6\lll \left( i + 4 \right) \right) \right) \lll 13 ## T \leftarrow \left( T \boxplus \left( \delta \mod 6\lll \left( i + 5 \right) \right) \right) \lll 17 ## K_ \leftarrow T \, T \, T \, T \, T \, T


Key schedule for LEA-256

Let K = K \, K \, K \, K \, K \, K \, K \, K be a 256-bit key, where K ( 0 \le i < 8 ) are 32-bit blocks. The key schedule for LEA-192 takes K and eight 32-bit constants \delta ( 0 \le i < 8 ) as inputs and outputs thirty-two 192-bit round keys K_ ( 0 \le i < 32 ). The key schedule operation for LEA-256 is as follows: # T \, T \, T \, T \, T \, T \, T \, T \leftarrow K \, K \, K \, K \, K \, K \, K \, K # for i=0 to 31 ## T i \mod 8\leftarrow \left( T i \mod 8\boxplus \left( \delta \mod 8\lll i \right) \right) \lll 1 ## T i + 1 \mod 8\leftarrow \left( T i + 1 \mod 8\boxplus \left( \delta \mod 8\lll \left( i + 1 \right) \right) \right) \lll 3 ## T i + 2 \mod 8\leftarrow \left( T i + 2 \mod 8\boxplus \left( \delta \mod 8\lll \left( i + 2 \right) \right) \right) \lll 6 ## T i + 3 \mod 8\leftarrow \left( T i + 3 \mod 8\boxplus \left( \delta \mod 8\lll \left( i + 3 \right) \right) \right) \lll 11 ## T i + 4 \mod 8\leftarrow \left( T i + 4 \mod 8\boxplus \left( \delta \mod 8\lll \left( i + 4 \right) \right) \right) \lll 13 ## T i + 5 \mod 8\leftarrow \left( T i + 5 \mod 8\boxplus \left( \delta \mod 8\lll \left( i + 5 \right) \right) \right) \lll 17 ## K_ \leftarrow T i \mod 8\, T i + 1 \mod 8\, T i + 2 \mod 8\, T i + 3 \mod 8\, T i + 4 \mod 8\, T i + 5 \mod 8


Constant values

The eight 32-bit constant values \delta ( 0 \le i < 8 ) used in the key schedule are given in the following table.


Security

As of 2019, no successful attack on full-round LEA is known. As is typical for iterated block ciphers, reduced-round variants have been attacked. The best published attacks on LEA in the standard attack model (CPA/CCA with unknown key) are boomerang attacks and differential linear attacks. The security margin to the whole rounds ratio is greater than 37% against various existing cryptanalytic techniques for block ciphers.


Performance

LEA has very good performance in a general-purpose software environment. In particular, it is possible to encrypt at a rate of about 1.5 to 2 times on average, compared to AES, the most widely used block cipher in various software environments. The tables below compare the performance of LEA and AES using FELICS (Fair Evaluation of Lightweight Cryptographic Systems), a benchmarking framework for evaluation of software implementations of lightweight cryptographic primitives.


Test vectors

Test vectors for LEA for each key length are as follows. All values are expressed in hexadecimal form. * LEA-128 ** Key: 0f 1e 2d 3c 4b 5a 69 78 87 96 a5 b4 c3 d2 e1 f0 ** Plaintext: 10 11 12 13 14 15 16 17 18 19 1a 1b 1c 1d 1e 1f ** Ciphertext: 9f c8 4e 35 28 c6 c6 18 55 32 c7 a7 04 64 8b fd * LEA-192 ** Key: 0f 1e 2d 3c 4b 5a 69 78 87 96 a5 b4 c3 d2 e1 f0 f0 e1 d2 c3 b4 a5 96 87 ** Plaintext: 20 21 22 23 24 25 26 27 28 29 2a 2b 2c 2d 2e 2f ** Ciphertext: 6f b9 5e 32 5a ad 1b 87 8c dc f5 35 76 74 c6 f2 * LEA-256 ** Key: 0f 1e 2d 3c 4b 5a 69 78 87 96 a5 b4 c3 d2 e1 f0 f0 e1 d2 c3 b4 a5 96 87 78 69 5a 4b 3c 2d 1e 0f ** Plaintext: 30 31 32 33 34 35 36 37 38 39 3a 3b 3c 3d 3e 3f ** Ciphertext: d6 51 af f6 47 b1 89 c1 3a 89 00 ca 27 f9 e1 97


Implementations

LEA is free for any use: public or private, commercial or non-commercial. The source code for distribution of LEA implemented in C, Java, and Python can be downloaded from KISA's website. In addition, LEA is contained in Crypto++ library, a free C++ class library of cryptographic schemes.


KCMVP

LEA is one of the cryptographic algorithms approved by the Korean Cryptographic Module Validation Program (KCMVP).


Standardization

LEA is included in the following standards. * KS X 3246, 128-bit block cipher LEA (in Korean) * ISO/IEC 29192-2:2019, ''Information security - Lightweight cryptography - Part 2: Block ciphers''


References

{{cryptography navbox, block Block ciphers