Home
last modified time | relevance | path

Searched refs:crypto_xor (Results 1 – 14 of 14) sorted by relevance

/linux-2.6.39/crypto/
Dpcbc.c58 crypto_xor(iv, src, bsize); in crypto_pcbc_encrypt_segment()
61 crypto_xor(iv, src, bsize); in crypto_pcbc_encrypt_segment()
84 crypto_xor(iv, src, bsize); in crypto_pcbc_encrypt_inplace()
87 crypto_xor(iv, src, bsize); in crypto_pcbc_encrypt_inplace()
137 crypto_xor(dst, iv, bsize); in crypto_pcbc_decrypt_segment()
139 crypto_xor(iv, dst, bsize); in crypto_pcbc_decrypt_segment()
165 crypto_xor(src, iv, bsize); in crypto_pcbc_decrypt_inplace()
167 crypto_xor(iv, src, bsize); in crypto_pcbc_decrypt_inplace()
Dcbc.c55 crypto_xor(iv, src, bsize); in crypto_cbc_encrypt_segment()
78 crypto_xor(src, iv, bsize); in crypto_cbc_encrypt_inplace()
128 crypto_xor(dst, iv, bsize); in crypto_cbc_decrypt_segment()
159 crypto_xor(src, src - bsize, bsize); in crypto_cbc_decrypt_inplace()
163 crypto_xor(src, walk->iv, bsize); in crypto_cbc_decrypt_inplace()
Dxcbc.c118 crypto_xor(prev, odds, bs); in crypto_xcbc_digest_update()
126 crypto_xor(prev, p, bs); in crypto_xcbc_digest_update()
168 crypto_xor(prev, odds, bs); in crypto_xcbc_digest_final()
169 crypto_xor(prev, consts + offset, bs); in crypto_xcbc_digest_final()
Dctr.c62 crypto_xor(keystream, src, nbytes); in crypto_ctr_crypt_final()
82 crypto_xor(dst, src, bsize); in crypto_ctr_crypt_segment()
110 crypto_xor(src, keystream, bsize); in crypto_ctr_crypt_inplace()
Dsalsa20_generic.c155 crypto_xor(dst, buf, bytes); in salsa20_encrypt_bytes()
159 crypto_xor(dst, buf, 64); in salsa20_encrypt_bytes()
Dcts.c198 crypto_xor(tmp, iv, bsize); in cts_cbc_decrypt()
211 crypto_xor(d, desc->info, bsize); in cts_cbc_decrypt()
Dghash-generic.c85 crypto_xor(dst, src, GHASH_BLOCK_SIZE); in ghash_update()
Dccm.c178 crypto_xor(odata, idata, bs); in compute_mac()
187 crypto_xor(odata, data, bs); in compute_mac()
239 crypto_xor(odata, idata, 16); in get_data_to_compute()
Dgcm.c289 crypto_xor(pctx->auth_tag, pctx->iauth_tag, 16); in __gcm_hash_final_done()
530 crypto_xor(pctx->auth_tag, pctx->iauth_tag, 16); in gcm_encrypt_done()
561 crypto_xor(pctx->auth_tag, pctx->iauth_tag, 16); in crypto_gcm_encrypt()
576 crypto_xor(auth_tag, iauth_tag, 16); in crypto_gcm_verify()
Dseqiv.c95 crypto_xor(info, ctx->salt, ivsize); in seqiv_geniv()
Dalgapi.c898 void crypto_xor(u8 *dst, const u8 *src, unsigned int size) in crypto_xor() function
908 EXPORT_SYMBOL_GPL(crypto_xor);
/linux-2.6.39/include/crypto/
Dalgapi.h181 void crypto_xor(u8 *dst, const u8 *src, unsigned int size);
/linux-2.6.39/arch/x86/crypto/
Daesni-intel_glue.c426 crypto_xor(keystream, src, nbytes); in ctr_crypt_final()
/linux-2.6.39/drivers/md/
Ddm-crypt.c617 crypto_xor(dst + dmreq->sg_out.offset, iv, cc->iv_size); in crypt_iv_lmk_post()