cipher-workshop/aes/src
Kristofers Solo 9e013352a5
docs(aes): document cipher operation functions
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
2025-12-31 00:13:51 +02:00
..
block refactor(cipher-core): unify secret_block! and secret_key! macros 2025-12-31 00:07:26 +02:00
key refactor(cipher-core): unify secret_block! and secret_key! macros 2025-12-31 00:07:26 +02:00
operations docs(aes): document cipher operation functions 2025-12-31 00:13:51 +02:00
aes.rs feat(factory): add cipher/algorithm helper functions 2025-11-24 12:02:22 +02:00
constants.rs feat(aes): add inverse SBox lookup 2025-11-24 08:50:22 +02:00
lib.rs chore(aes): remove unused function 2025-12-30 23:48:38 +02:00
sbox.rs fix: clippy warnings 2025-12-18 18:42:50 +02:00