mirror of
https://github.com/kristoferssolo/cipher-workshop.git
synced 2025-12-31 13:52:29 +00:00
Add doc comments explaining the four AES round operations:
- SubBytes: S-box substitution for non-linearity
- ShiftRows: cyclic row shifting for column diffusion
- MixColumns: GF(2^8) matrix multiplication for row diffusion
- AddRoundKey: XOR with derived subkey
|
||
|---|---|---|
| .. | ||
| block | ||
| key | ||
| operations | ||
| aes.rs | ||
| constants.rs | ||
| lib.rs | ||
| sbox.rs | ||