crypto/aes: silence warning on godforsaken android gcc

This commit is contained in:
Shawn Hoffman 2022-08-02 23:03:51 -07:00
parent 7d2d5d914b
commit 4e6aa28da4
1 changed files with 1 additions and 1 deletions

View File

@ -264,7 +264,7 @@ public:
template <size_t RoundIdx>
inline constexpr void StoreRoundKey(const u32* rk)
{
const uint8x16_t rk_block = vld1q_u32(rk);
const uint8x16_t rk_block = vreinterpretq_u8_u32(vld1q_u32(rk));
if constexpr (AesMode == Mode::Encrypt)
round_keys[RoundIdx] = rk_block;
else