Whitespace check-in
parent
6aa6393bf3
commit
aee045912a
|
|
@ -643,10 +643,10 @@ void BLAKE2_Compress32_NEON(const byte* input, BLAKE2s_State& state)
|
|||
BLAKE2S_UNDIAGONALIZE(row1,row2,row3,row4); \
|
||||
} while(0)
|
||||
|
||||
const uint32x4_t m0 = vreinterpretq_u32_u8(vld1q_u8((input + 00)));
|
||||
const uint32x4_t m1 = vreinterpretq_u32_u8(vld1q_u8((input + 16)));
|
||||
const uint32x4_t m2 = vreinterpretq_u32_u8(vld1q_u8((input + 32)));
|
||||
const uint32x4_t m3 = vreinterpretq_u32_u8(vld1q_u8((input + 48)));
|
||||
const uint32x4_t m0 = vreinterpretq_u32_u8(vld1q_u8(input + 00));
|
||||
const uint32x4_t m1 = vreinterpretq_u32_u8(vld1q_u8(input + 16));
|
||||
const uint32x4_t m2 = vreinterpretq_u32_u8(vld1q_u8(input + 32));
|
||||
const uint32x4_t m3 = vreinterpretq_u32_u8(vld1q_u8(input + 48));
|
||||
|
||||
uint32x4_t row1, row2, row3, row4;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue