mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-27 11:50:29 +00:00
Simplify Aach64 polynomial multiply tests
This commit is contained in:
parent
75c9775944
commit
6291e2fbeb
@ -11,11 +11,12 @@
|
||||
int main(int argc, char* argv[])
|
||||
{
|
||||
poly64_t a1={0x9090909090909090}, b1={0xb0b0b0b0b0b0b0b0};
|
||||
poly64x2_t c1={0x9090909090909090, 0xb0b0b0b0b0b0b0b0};
|
||||
poly8x16_t a2={0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
|
||||
0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0,0xa0},
|
||||
|
||||
poly128_t r1 = vmull_p64(a1, b1);
|
||||
poly128_t r2 = vmull_high_p64(a1, b1);
|
||||
poly128_t r2 = vmull_high_p64(c1, c1);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user