update demo program and bpf test for aes ciphertext removal

This commit is contained in:
Sam Kim 2021-10-14 12:56:37 -04:00 committed by Michael Vines
parent 88f952075d
commit 22114c523f
1 changed files with 6 additions and 0 deletions

View File

@ -56,6 +56,12 @@ impl AESCiphertext {
}
}
impl Default for AESCiphertext {
fn default() -> Self {
AESCiphertext([0_u8; 16])
}
}
#[cfg(test)]
mod tests {
use super::*;