feat: update bench.rs

This commit is contained in:
2023-09-03 23:21:10 +08:00
parent 8d226a5f18
commit 2a3eca3be1
3 changed files with 6 additions and 20 deletions

0
src/decryptor.rs Normal file
View File

View File

@@ -1,8 +1,11 @@
pub use encryptor::Sm4GcmStreamEncryptor;
pub use crate::encryptor::sm4_gcm_aad_encrypt;
pub use crate::encryptor::sm4_gcm_encrypt;
mod util;
mod encryptor;
pub use encryptor::Sm4GcmStreamEncryptor;
use crate::encryptor::sm4_gcm_aad_encrypt;
mod decryptor;
// Test vectors are all from BC
#[test]