crate::frame::parameters::frame!(
0x0094,
{ plaintext: [u8; 16], key: [u8; 16] },
impl {
impl Command {
#[must_use]
pub const fn new(plaintext: [u8; 16], key: [u8; 16]) -> Self {
Self { plaintext, key }
}
}
},
{ ciphertext: [u8; 16] } => Bootloader(bootloader)::AesEncrypt,
impl {
impl Response {
#[must_use]
pub const fn ciphertext(&self) -> [u8; 16] {
self.ciphertext
}
}
}
);