Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#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; |
|
}
|
|
|