update demo program and bpf test for aes ciphertext removal
This commit is contained in:
parent
88f952075d
commit
22114c523f
|
@ -56,6 +56,12 @@ impl AESCiphertext {
|
|||
}
|
||||
}
|
||||
|
||||
impl Default for AESCiphertext {
|
||||
fn default() -> Self {
|
||||
AESCiphertext([0_u8; 16])
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
|
Loading…
Reference in New Issue