#[cfg(not(all(rcrypto_aes = "support", any(target_arch = "x86", target_arch = "x86_64"))))]
mod const_tables;
#[cfg(not(all(rcrypto_aes = "support", any(target_arch = "x86", target_arch = "x86_64"))))]
mod aes_generic;
#[cfg(not(all(rcrypto_aes = "support", any(target_arch = "x86", target_arch = "x86_64"))))]
pub use aes_generic::AES;
#[cfg(all(rcrypto_aes = "support", any(target_arch = "x86", target_arch = "x86_64")))]
mod aes_amd64;
#[cfg(all(rcrypto_aes = "support", any(target_arch = "x86", target_arch = "x86_64")))]
pub use aes_amd64::AES;
mod aes;