7 * Test vector from QARMA paper (https://eprint.iacr.org/2016/444.pdf)
8 * to verify one computation of the pauth_computepac() function,
11 * Use PACGA, because it returns the most bits from ComputePAC.
12 * We still only get the most significant 32-bits of the result.
15 static const uint64_t d
[5] = {
16 0xfb623599da6e8127ull
,
17 0x477d469dec0b8762ull
,
18 0x84be85ce9804e94bull
,
19 0xec2802d4e0a488e9ull
,
20 0xc003b93999b33765ull
& 0xffffffff00000000ull
24 asm("msr apgakeyhi_el1, %[w0]\n\t"
25 "msr apgakeylo_el1, %[k0]\n\t"
26 "pacga %[r], %[P], %[T]"
37 ml_printf("FAIL: %lx != %lx\n", r
, d
[4]);