AES key schedule

From testwiki
Jump to navigation Jump to search

AES uses a key schedule to expand a short key into a number of separate round keys. The three AES variants have a different number of rounds. Each variant requires a separate 128-bit round key for each round plus one more.[note 1] The key schedule produces the needed round keys from the initial key.

Round constants

Values of Template:Mvar in hexadecimal
Template:Mvar 1 2 3 4 5 6 7 8 9 10
Template:Mvar 01 02 04 08 10 20 40 80 1B 36

The round constant Template:Mvar for round Template:Mvar of the key expansion is the 32-bit word:

where Template:Mvar is an eight-bit value defined as:

where is the bitwise XOR operator and constants such as Template:Math and Template:Math are given in hexadecimal. Equivalently:

where the bits of Template:Mvar are treated as the coefficients of an element of the finite field , so that e.g. represents the polynomial .

AES uses up to Template:Math for AES-128 (as 11 round keys are needed), up to Template:Math for AES-192, and up to Template:Math for AES-256.[note 2]

The key schedule

AES key schedule for a 128-bit key

Define:

Also define Template:Math as a one-byte left circular shift:

and Template:Math as an application of the AES S-box to each of the four bytes of the word:

Then for :

Notes

Template:Reflist

References

External links


Cite error: <ref> tags exist for a group named "note", but no corresponding <references group="note"/> tag was found