diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-04 18:12:05 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-04 18:12:05 +0300 |
commit | d11faedb02216af6fb359412bf97205934a5ca5a (patch) | |
tree | 939219ded083a3f0f0a7dae865227668c01c2c7a | |
parent | bugfix (diff) | |
download | aes-tools-d11faedb02216af6fb359412bf97205934a5ca5a.tar.gz aes-tools-d11faedb02216af6fb359412bf97205934a5ca5a.zip |
README update
-rw-r--r-- | README.md | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -8,6 +8,12 @@ I've used the compiler and the assembler shipped with Visual Studio Express 2013 You can generate the solution using CMake and build it using Visual Studio. +To make AES block I/O functions use big-endian by default (also used in the original FIPS standard; required for the tests), +pass the `LIBAESNI_BE_IO_BY_DEFAULT=1` preprocessor definition. +Using CMake, you can pass the definition like this: + + cmake -D CMAKE_C_FLAGS=/DLIBAESNI_BE_IO_BY_DEFAULT=1 ... + ## Running on older CPUs To run programs that are using the AES-NI instruction set on a CPU w/o the support for these instructions, one can use |