Home | History | Annotate | Download | only in arm

Lines Matching defs:tweak

163     uint8_t out[static 16], size_t nbytes, uint8_t tweak[static 16],
172 aesarmv8_xts_enc1(enc, in, out, nbytes % 128, tweak, nrounds);
180 aesarmv8_xts_enc8(enc, in, out, nbytes, tweak, nrounds);
187 uint8_t out[static 16], size_t nbytes, uint8_t tweak[static 16],
196 aesarmv8_xts_dec1(dec, in, out, nbytes % 128, tweak, nrounds);
204 aesarmv8_xts_dec8(dec, in, out, nbytes, tweak, nrounds);
269 uint8_t tweak[16];
272 aesarmv8_xts_update(cases[i].in, tweak);
273 if (memcmp(tweak, cases[i].out, 16))
310 /* Verify that our XTS tweak update logic works. */