From 07b711c7736dcf0a7f25ec7a59ae4bffa2c3df9d Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 17 Mar 2015 07:46:55 -0400 Subject: problem 11 --- src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/lib.rs') 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; -- cgit v1.2.3-54-g00ecf