diff options
author | Jack Lloyd <[email protected]> | 2017-08-22 10:54:09 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-08-22 10:54:09 -0400 |
commit | b004818486fe80696cfcaf566af3501622f6261b (patch) | |
tree | 9019a5d178fb9d7b91e1f021a5fbe8e5c4d629f4 | |
parent | 077761636c7b3bbfdf6f6bfe4e9ac359f2fed04e (diff) |
Remove BOTAN_PARALLEL_FOR from T-table AES
GH #1077
-rw-r--r-- | src/lib/block/aes/aes.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/block/aes/aes.cpp b/src/lib/block/aes/aes.cpp index 75591bfd2..144c7bbfd 100644 --- a/src/lib/block/aes/aes.cpp +++ b/src/lib/block/aes/aes.cpp @@ -168,7 +168,7 @@ void aes_encrypt_n(const uint8_t in[], uint8_t out[], } Z &= TE[82]; // this is zero, which hopefully the compiler cannot deduce - BOTAN_PARALLEL_FOR(size_t i = 0; i < blocks; ++i) + for(size_t i = 0; i < blocks; ++i) { uint32_t T0, T1, T2, T3; load_be(in + 16*i, T0, T1, T2, T3); |