Home
last modified time | relevance | path

Searched refs:crypto_aegis_block_xor (Results 1 – 4 of 4) sorted by relevance

/Linux-v4.19/crypto/
Daegis128l.c70 crypto_aegis_block_xor(&state->blocks[0], &msg->blocks[0]); in crypto_aegis128l_update_a()
71 crypto_aegis_block_xor(&state->blocks[4], &msg->blocks[1]); in crypto_aegis128l_update_a()
96 crypto_aegis_block_xor(&key_iv, &chunk.blocks[0]); in crypto_aegis128l_init()
107 crypto_aegis_block_xor(&state->blocks[5], &crypto_aegis_const[0]); in crypto_aegis128l_init()
108 crypto_aegis_block_xor(&state->blocks[6], &crypto_aegis_const[1]); in crypto_aegis128l_init()
109 crypto_aegis_block_xor(&state->blocks[7], &crypto_aegis_const[0]); in crypto_aegis128l_init()
155 crypto_aegis_block_xor(tmp0, &state->blocks[6]); in crypto_aegis128l_encrypt_chunk()
156 crypto_aegis_block_xor(tmp0, &state->blocks[1]); in crypto_aegis128l_encrypt_chunk()
157 crypto_aegis_block_xor(tmp0, &src_blk->blocks[0]); in crypto_aegis128l_encrypt_chunk()
161 crypto_aegis_block_xor(tmp1, &state->blocks[5]); in crypto_aegis128l_encrypt_chunk()
[all …]
Daegis256.c63 crypto_aegis_block_xor(&state->blocks[0], msg); in crypto_aegis256_update_a()
93 crypto_aegis_block_xor(&state->blocks[4], &crypto_aegis_const[0]); in crypto_aegis256_init()
94 crypto_aegis_block_xor(&state->blocks[5], &crypto_aegis_const[1]); in crypto_aegis256_init()
141 crypto_aegis_block_xor(&tmp, &state->blocks[5]); in crypto_aegis256_encrypt_chunk()
142 crypto_aegis_block_xor(&tmp, &state->blocks[4]); in crypto_aegis256_encrypt_chunk()
143 crypto_aegis_block_xor(&tmp, &state->blocks[1]); in crypto_aegis256_encrypt_chunk()
144 crypto_aegis_block_xor(&tmp, src_blk); in crypto_aegis256_encrypt_chunk()
158 crypto_aegis_block_xor(&tmp, &state->blocks[5]); in crypto_aegis256_encrypt_chunk()
159 crypto_aegis_block_xor(&tmp, &state->blocks[4]); in crypto_aegis256_encrypt_chunk()
160 crypto_aegis_block_xor(&tmp, &state->blocks[1]); in crypto_aegis256_encrypt_chunk()
[all …]
Daegis128.c63 crypto_aegis_block_xor(&state->blocks[0], msg); in crypto_aegis128_update_a()
88 crypto_aegis_block_xor(&state->blocks[3], &crypto_aegis_const[0]); in crypto_aegis128_init()
89 crypto_aegis_block_xor(&state->blocks[4], &crypto_aegis_const[1]); in crypto_aegis128_init()
134 crypto_aegis_block_xor(&tmp, &state->blocks[4]); in crypto_aegis128_encrypt_chunk()
135 crypto_aegis_block_xor(&tmp, &state->blocks[1]); in crypto_aegis128_encrypt_chunk()
136 crypto_aegis_block_xor(&tmp, src_blk); in crypto_aegis128_encrypt_chunk()
150 crypto_aegis_block_xor(&tmp, &state->blocks[4]); in crypto_aegis128_encrypt_chunk()
151 crypto_aegis_block_xor(&tmp, &state->blocks[1]); in crypto_aegis128_encrypt_chunk()
170 crypto_aegis_block_xor(&tmp, &state->blocks[4]); in crypto_aegis128_encrypt_chunk()
171 crypto_aegis_block_xor(&tmp, &state->blocks[1]); in crypto_aegis128_encrypt_chunk()
[all …]
Daegis.h42 static void crypto_aegis_block_xor(union aegis_block *dst, in crypto_aegis_block_xor() function