Lines Matching refs:msg
165 void crypto_aegis128_update_neon(void *state, const void *msg) in crypto_aegis128_update_neon() argument
171 st = aegis128_update_neon(st, vld1q_u8(msg)); in crypto_aegis128_update_neon()
180 uint8x16_t msg; in crypto_aegis128_encrypt_chunk_neon() local
187 msg = vld1q_u8(src); in crypto_aegis128_encrypt_chunk_neon()
188 st = aegis128_update_neon(st, msg); in crypto_aegis128_encrypt_chunk_neon()
189 vst1q_u8(dst, msg ^ s); in crypto_aegis128_encrypt_chunk_neon()
201 msg = vld1q_u8(buf); in crypto_aegis128_encrypt_chunk_neon()
202 st = aegis128_update_neon(st, msg); in crypto_aegis128_encrypt_chunk_neon()
203 vst1q_u8(buf, msg ^ s); in crypto_aegis128_encrypt_chunk_neon()
214 uint8x16_t msg; in crypto_aegis128_decrypt_chunk_neon() local
219 msg = vld1q_u8(src) ^ st.v[1] ^ (st.v[2] & st.v[3]) ^ st.v[4]; in crypto_aegis128_decrypt_chunk_neon()
220 st = aegis128_update_neon(st, msg); in crypto_aegis128_decrypt_chunk_neon()
221 vst1q_u8(dst, msg); in crypto_aegis128_decrypt_chunk_neon()
234 msg = vld1q_u8(buf) ^ s; in crypto_aegis128_decrypt_chunk_neon()
235 vst1q_u8(buf, msg); in crypto_aegis128_decrypt_chunk_neon()
238 st = aegis128_update_neon(st, msg); in crypto_aegis128_decrypt_chunk_neon()