1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-19 10:05:05 -07:00

Fix MAC computation in AEGIS128L on aarch64

This commit is contained in:
harl 2021-03-15 17:24:48 +08:00 committed by GitHub
parent 3de0b3cdad
commit 144e6e3161
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -87,7 +87,6 @@ crypto_aead_aegis128l_mac(unsigned char *mac, unsigned long long adlen,
}
tmp = veorq_u8(state[6], state[5]);
tmp = veorq_u8(tmp, state[5]);
tmp = veorq_u8(tmp, state[4]);
tmp = veorq_u8(tmp, state[3]);
tmp = veorq_u8(tmp, state[2]);