We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ee0f534 commit e66aed9Copy full SHA for e66aed9
src/aarch64/aesni.jl
@@ -29,7 +29,7 @@ copy(src::AESNIKey) = copyto!(AESNIKey(), src)
29
Assistant function for AES128. Originally compiled for x86 from the C++ source code:
30
```cpp
31
R123_STATIC_INLINE __m128i AES_128_ASSIST (__m128i temp1, __m128i temp2) {
32
- uint64x2 temp3;
+ __m128i temp3;
33
temp2 = _mm_shuffle_epi32 (temp2 ,0xff);
34
temp3 = _mm_slli_si128 (temp1, 0x4);
35
temp1 = _mm_xor_si128 (temp1, temp3);
0 commit comments