Go to file
Kristofers Solo 70a0e183b5
feat(aes): Implement ShiftRows and MixColumns transformations
- Implements `shift_rows` performing cyclic shifts on the state matrix rows.
- Implements `mix_columns` using Galois Field matrix multiplication.
- Adds `gmul` and `xtime` const helpers for GF(2^8) arithmetic.
- Adds unit tests verifying transformations against FIPS-197 vectors.
2025-11-24 08:50:22 +02:00
aes feat(aes): Implement ShiftRows and MixColumns transformations 2025-11-24 08:50:22 +02:00
cipher-core chore: use workspace package vars 2025-11-24 08:50:22 +02:00
cipher-factory chore: use workspace package vars 2025-11-24 08:50:22 +02:00
cli chore: use workspace package vars 2025-11-24 08:50:22 +02:00
des fix: clippy warnings 2025-11-24 08:50:22 +02:00
.gitignore Initial commit 2025-10-13 12:49:49 +03:00
Cargo.toml feat(aes): add substitute bytes 2025-11-24 08:50:22 +02:00
LICENSE-APACHE Create LICENSE-APACHE 2025-10-13 12:51:43 +03:00
LICENSE-MIT Create LICENSE-MIT 2025-10-13 12:52:21 +03:00