This PR is a tiny improvement for the bip324_cipher_roundtrip
fuzz target: currently the damaging of input data for decryption (either ciphertext or aad) only ever happens in the lower nibble within the byte at the damage position, as the bit position for the damage_val
byte was calculated with damage_bit & 3
(corresponding to % 4
) rather than damage_bit & 7
(corresponding to the expected % 8
).
Noticed while reviewing #28263 which uses similar constructs.