Initial commit
[authen-passphrase-scrypt.git] / scrypt-1.2.1 / libcperciva / cpusupport / Build / cpusupport-X86-AESNI.c
1 #include <wmmintrin.h>
2
3 static char a[16];
4
5 int
6 main(void)
7 {
8 __m128i x, y;
9
10 x = _mm_loadu_si128((__m128i *)a);
11 y = _mm_aesenc_si128(x, x);
12 _mm_storeu_si128((__m128i *)a, y);
13 return (a[0]);
14 }
This page took 0.020181 seconds and 4 git commands to generate.