crypto/aes: silence warning on godforsaken android gcc
This commit is contained in:
parent
7d2d5d914b
commit
4e6aa28da4
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue