summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 901cbd6..48418ab 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -7,11 +7,13 @@ mod data;
mod primitives;
mod xor;
+pub use aes::BlockCipherMode;
pub use aes::decrypt_aes_128_ecb;
pub use aes::decrypt_aes_128_cbc;
pub use aes::encrypt_aes_128_ecb;
pub use aes::encrypt_aes_128_cbc;
pub use aes::find_aes_128_ecb_encrypted_string;
+pub use aes::detect_ecb_cbc;
pub use base64::to_base64;
pub use primitives::fixed_xor;
pub use primitives::pad_pkcs7;