cipher-workshop/aes/src/key/expanded.rs

6 lines
90 B
Rust

use crate::secret_key;
secret_key! {
pub struct ExpandedKey(u32, 32, 0xFFFF_FFFF);
}