AES-128 support, using the AES-NI extensions.

This commit is contained in:
2019-06-30 15:24:29 -07:00
parent 82bb499be3
commit ecc29f06fa
4 changed files with 183 additions and 0 deletions

3
src/aes/mod.rs Normal file
View File

@@ -0,0 +1,3 @@
#[cfg(all(any(target_arch="x86", target_arch="x86_64"),
target_feature = "aes"))]
pub mod aesni;