/linux-4.4.14/crypto/ |
D | pcbc.c | 58 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()
|
D | cbc.c | 55 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()
|
D | xcbc.c | 119 crypto_xor(prev, odds, bs); in crypto_xcbc_digest_update() 127 crypto_xor(prev, p, bs); in crypto_xcbc_digest_update() 169 crypto_xor(prev, odds, bs); in crypto_xcbc_digest_final() 170 crypto_xor(prev, consts + offset, bs); in crypto_xcbc_digest_final()
|
D | cmac.c | 145 crypto_xor(prev, odds, bs); in crypto_cmac_digest_update() 153 crypto_xor(prev, p, bs); in crypto_cmac_digest_update() 195 crypto_xor(prev, odds, bs); in crypto_cmac_digest_final() 196 crypto_xor(prev, consts + offset, bs); in crypto_cmac_digest_final()
|
D | salsa20_generic.c | 155 crypto_xor(dst, buf, bytes); in salsa20_encrypt_bytes() 159 crypto_xor(dst, buf, 64); in salsa20_encrypt_bytes()
|
D | chacha20_generic.c | 94 crypto_xor(dst, stream, CHACHA20_BLOCK_SIZE); in chacha20_docrypt() 100 crypto_xor(dst, stream, bytes); in chacha20_docrypt()
|
D | keywrap.c | 190 crypto_xor(block->A, tbe, SEMIBSIZE); in crypto_kw_decrypt() 282 crypto_xor(block->A, tbe, SEMIBSIZE); in crypto_kw_encrypt()
|
D | ctr.c | 68 crypto_xor(keystream, src, nbytes); in crypto_ctr_crypt_final() 88 crypto_xor(dst, src, bsize); in crypto_ctr_crypt_segment() 116 crypto_xor(src, keystream, bsize); in crypto_ctr_crypt_inplace()
|
D | cts.c | 198 crypto_xor(tmp, iv, bsize); in cts_cbc_decrypt() 212 crypto_xor(d, desc->info, bsize); in cts_cbc_decrypt()
|
D | ghash-generic.c | 88 crypto_xor(dst, src, GHASH_BLOCK_SIZE); in ghash_update()
|
D | seqiv.c | 99 crypto_xor(info, ctx->salt, ivsize); in seqiv_geniv() 196 crypto_xor(info, ctx->salt, ivsize); in seqiv_aead_encrypt()
|
D | ccm.c | 184 crypto_xor(odata, idata, bs); in compute_mac() 193 crypto_xor(odata, data, bs); in compute_mac() 245 crypto_xor(odata, idata, 16); in get_data_to_compute()
|
D | echainiv.c | 142 crypto_xor(info, ctx->salt, ivsize); in echainiv_encrypt()
|
D | algapi.c | 972 void crypto_xor(u8 *dst, const u8 *src, unsigned int size) in crypto_xor() function 982 EXPORT_SYMBOL_GPL(crypto_xor);
|
D | gcm.c | 460 crypto_xor(auth_tag, pctx->iauth_tag, 16); in gcm_enc_copy_hash() 517 crypto_xor(auth_tag, iauth_tag, 16); in crypto_gcm_verify()
|
/linux-4.4.14/arch/arm/crypto/ |
D | aesbs-glue.c | 123 crypto_xor(src, iv, AES_BLOCK_SIZE); in aesbs_cbc_encrypt() 133 crypto_xor(walk.iv, src, AES_BLOCK_SIZE); in aesbs_cbc_encrypt() 175 crypto_xor(dst, iv, AES_BLOCK_SIZE); in aesbs_cbc_decrypt() 246 crypto_xor(tdst, ks, nbytes); in aesbs_ctr_encrypt()
|
/linux-4.4.14/drivers/md/ |
D | dm-crypt.c | 609 crypto_xor(dst + dmreq->sg_out.offset, iv, cc->iv_size); in crypt_iv_lmk_post() 690 crypto_xor(buf, (u8 *)§or, 8); in crypt_iv_tcw_whitening() 691 crypto_xor(&buf[8], (u8 *)§or, 8); in crypt_iv_tcw_whitening() 707 crypto_xor(&buf[0], &buf[12], 4); in crypt_iv_tcw_whitening() 708 crypto_xor(&buf[4], &buf[8], 4); in crypt_iv_tcw_whitening() 712 crypto_xor(data + i * 8, buf, 8); in crypt_iv_tcw_whitening() 735 crypto_xor(iv, (u8 *)§or, 8); in crypt_iv_tcw_gen() 737 crypto_xor(&iv[8], (u8 *)§or, cc->iv_size - 8); in crypt_iv_tcw_gen()
|
/linux-4.4.14/drivers/crypto/vmx/ |
D | aes_ctr.c | 108 crypto_xor(keystream, src, nbytes); in p8_aes_ctr_final()
|
/linux-4.4.14/include/crypto/ |
D | algapi.h | 190 void crypto_xor(u8 *dst, const u8 *src, unsigned int size);
|
/linux-4.4.14/arch/x86/crypto/ |
D | blowfish_glue.c | 274 crypto_xor(keystream, src, nbytes); in ctr_crypt_final()
|
D | des3_ede_glue.c | 280 crypto_xor(keystream, src, nbytes); in ctr_crypt_final()
|
D | cast5_avx_glue.c | 259 crypto_xor(keystream, src, nbytes); in ctr_crypt_final()
|
D | aesni-intel_glue.c | 481 crypto_xor(keystream, src, nbytes); in ctr_crypt_final()
|
/linux-4.4.14/arch/sparc/crypto/ |
D | aes_glue.c | 347 crypto_xor((u8 *) keystream, src, nbytes); in ctr_crypt_final()
|