summaryrefslogtreecommitdiff
path: root/TestPrograms/test_arm_aes.cpp
blob: ae5c00090abb071fa35f1beb2aa8ead4925771a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdint.h>
#if (CRYPTOPP_ARM_NEON_HEADER)
# include <arm_neon.h>
#endif

int main(int argc, char* argv[])
{
    uint8x16_t x={0};
    x=vaeseq_u8(x,x);
    x=vaesmcq_u8(x);
    x=vaesdq_u8(x,x);
    x=vaesimcq_u8(x);
    return 0;
}