A portable version of AES128 key expansion.

This commit is contained in:
2019-07-06 21:27:18 -07:00
parent 08be0bf9e4
commit c07fccd57c
2 changed files with 155 additions and 1 deletions

View File

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