Lines Matching refs:src
67 const u8 *src, unsigned int size);
69 const u8 *src, unsigned int size);
135 const u8 *src, unsigned int size) in crypto_aegis128_ad() argument
137 if (AEGIS_ALIGNED(src)) { in crypto_aegis128_ad()
139 (const union aegis_block *)src; in crypto_aegis128_ad()
149 crypto_aegis128_update_u(state, src); in crypto_aegis128_ad()
152 src += AEGIS_BLOCK_SIZE; in crypto_aegis128_ad()
158 const u8 *src, unsigned int size) in crypto_aegis128_encrypt_chunk() argument
162 if (AEGIS_ALIGNED(src) && AEGIS_ALIGNED(dst)) { in crypto_aegis128_encrypt_chunk()
167 (const union aegis_block *)src; in crypto_aegis128_encrypt_chunk()
180 src += AEGIS_BLOCK_SIZE; in crypto_aegis128_encrypt_chunk()
189 crypto_xor(tmp.bytes, src, AEGIS_BLOCK_SIZE); in crypto_aegis128_encrypt_chunk()
191 crypto_aegis128_update_u(state, src); in crypto_aegis128_encrypt_chunk()
196 src += AEGIS_BLOCK_SIZE; in crypto_aegis128_encrypt_chunk()
203 memcpy(msg.bytes, src, size); in crypto_aegis128_encrypt_chunk()
219 const u8 *src, unsigned int size) in crypto_aegis128_decrypt_chunk() argument
223 if (AEGIS_ALIGNED(src) && AEGIS_ALIGNED(dst)) { in crypto_aegis128_decrypt_chunk()
228 (const union aegis_block *)src; in crypto_aegis128_decrypt_chunk()
241 src += AEGIS_BLOCK_SIZE; in crypto_aegis128_decrypt_chunk()
250 crypto_xor(tmp.bytes, src, AEGIS_BLOCK_SIZE); in crypto_aegis128_decrypt_chunk()
257 src += AEGIS_BLOCK_SIZE; in crypto_aegis128_decrypt_chunk()
264 memcpy(msg.bytes, src, size); in crypto_aegis128_decrypt_chunk()
293 const u8 *src = (const u8 *)mapped; in crypto_aegis128_process_ad() local
298 memcpy(buf.bytes + pos, src, fill); in crypto_aegis128_process_ad()
302 src += fill; in crypto_aegis128_process_ad()
305 crypto_aegis128_ad(state, src, left); in crypto_aegis128_process_ad()
306 src += left & ~(AEGIS_BLOCK_SIZE - 1); in crypto_aegis128_process_ad()
310 memcpy(buf.bytes + pos, src, left); in crypto_aegis128_process_ad()
330 u8 *dst, const u8 *src, in crypto_aegis128_process_crypt() argument
341 crypt(state, walk->dst.virt.addr, walk->src.virt.addr, nbytes); in crypto_aegis128_process_crypt()
405 crypto_aegis128_process_ad(&state, req->src, req->assoclen); in crypto_aegis128_encrypt()
412 crypto_aegis128_process_ad(&state, req->src, req->assoclen); in crypto_aegis128_encrypt()
434 scatterwalk_map_and_copy(tag.bytes, req->src, req->assoclen + cryptlen, in crypto_aegis128_decrypt()
440 crypto_aegis128_process_ad(&state, req->src, req->assoclen); in crypto_aegis128_decrypt()
447 crypto_aegis128_process_ad(&state, req->src, req->assoclen); in crypto_aegis128_decrypt()