AddRoundKey XORs a round key into the mixed state. This lesson pins the key and output bytes.
highlighted = computed this step
Why the round key is XORed
AddRoundKey XORs the mixed state with the round key. The grid shows the final state for this single round.
state⊕round key
Pin the round key
The round key is 0xa0fafe1788542cb123a339392a6c7605.
0xa0fafe1788542cb123a339392a6c7605
Read the one-round output
After XOR, the state is 0xa49c7ff2689f352b6b5bea43026a5049.
0xa49c7ff2689f352b6b5bea43026a5049
Summary
AddRoundKey finishes this displayed AES round. NOTE: no-padding; no-side-channel; no-production; never-roll-your-own. Exact byte transforms of ONE AES round over GF(2^8); real AES with 128 runs 10 rounds with a key schedule inside a reviewed mode such as CBC or GCM.