1pub mod aliases;
4pub mod consts;
5pub mod convert;
6pub mod crypto;
7pub mod decryptor;
8pub mod encryptor;
9pub mod error;
10pub mod utils;
11
12#[cfg(feature = "batch-ops")]
13pub mod batch_ops;
14
15pub use decryptor::decrypt;
17pub use encryptor::encrypt;
18pub use error::AescryptError;
19
20pub use crypto::kdf::ackdf::derive_secure_ackdf_key;
25pub use crypto::kdf::pbkdf2::derive_secure_pbkdf2_key;
26pub use crypto::kdf::pbkdf2_builder::Pbkdf2Builder;
27
28#[cfg(feature = "batch-ops")]
29pub use batch_ops::{decrypt_batch, encrypt_batch};
30
31pub use convert::convert_to_v3;