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.
17 lines
314 B
17 lines
314 B
4 years ago
|
#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[])
|
||
|
{
|
||
|
uint32x4_t y = {0};
|
||
|
y=vsha1cq_u32(y,0,y);
|
||
|
y=vsha1mq_u32(y,1,y);
|
||
|
y=vsha1pq_u32(y,2,y);
|
||
|
return 0;
|
||
|
}
|