An AES key schedule implementation in Rust.
Only supports 128-bit keys, with 10 rounds of key expansion.
let key: Key = [0xf7f7f7f7, 0x31313131, 0x12345678, 0x1];
let round_keys = expand_key(key);- Add code docs with examples
| Name | Name | Last commit date | ||
|---|---|---|---|---|
An AES key schedule implementation in Rust.
Only supports 128-bit keys, with 10 rounds of key expansion.
let key: Key = [0xf7f7f7f7, 0x31313131, 0x12345678, 0x1];
let round_keys = expand_key(key);