mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-02-06 04:04:17 +00:00
18 lines
322 B
C++
18 lines
322 B
C++
![]() |
#include <stdint.h>
|
||
|
#ifdef CRYPTOPP_ARM_NEON_HEADER
|
||
|
# include <arm_neon.h>
|
||
|
#endif
|
||
|
#ifdef CRYPTOPP_ARM_ACLE_HEADER
|
||
|
# include <arm_acle.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;
|
||
|
}
|