mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 18:09:48 +00:00
60eedb97ba
* Test fix ARM headers This problem has been festering for some time. The header file includes are slightly different than the ISA options. Some platforms need an include, others don't. * Fix cryptest-android.sh and cryptest-ios.sh * Fix MSVC ARM32 and ARM64 compile * Split ARM32 and ARM64 recipes in GNUmakefile
19 lines
398 B
C++
19 lines
398 B
C++
#include <arm_neon.h>
|
|
#include <stdint.h>
|
|
|
|
// test_acle.h determines if this is available. Then,
|
|
// -DCRYPTOPP_ARM_ACLE_HEADER=0 is added to CXXFLAGS
|
|
// if the ACLE header is not available.
|
|
#if (CRYPTOPP_ARM_ACLE_HEADER)
|
|
# include <arm_acle.h>
|
|
#endif
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
// SM4 block cipher
|
|
uint32x4_t x;
|
|
x=vsm4ekeyq_u32(x,x);
|
|
x=vsm4eq_u32(x,x);
|
|
return 0;
|
|
}
|