Searched refs:keystream (Results 1 – 5 of 5) sorted by relevance
/arch/x86/crypto/ |
D | cast5_avx_glue.c | 220 u8 keystream[CAST5_BLOCK_SIZE]; in ctr_crypt_final() local 225 __cast5_encrypt(ctx, keystream, ctrblk); in ctr_crypt_final() 226 crypto_xor_cpy(dst, keystream, src, nbytes); in ctr_crypt_final()
|
D | blowfish_glue.c | 253 u8 keystream[BF_BLOCK_SIZE]; in ctr_crypt_final() local 258 blowfish_enc_blk(ctx, keystream, ctrblk); in ctr_crypt_final() 259 crypto_xor_cpy(dst, keystream, src, nbytes); in ctr_crypt_final()
|
D | des3_ede_glue.c | 260 u8 keystream[DES3_EDE_BLOCK_SIZE]; in ctr_crypt_final() local 265 des3_ede_enc_blk(ctx, keystream, ctrblk); in ctr_crypt_final() 266 crypto_xor_cpy(dst, keystream, src, nbytes); in ctr_crypt_final()
|
D | aesni-intel_glue.c | 465 u8 keystream[AES_BLOCK_SIZE]; in ctr_crypt_final() local 470 aesni_enc(ctx, keystream, ctrblk); in ctr_crypt_final() 471 crypto_xor_cpy(dst, keystream, src, nbytes); in ctr_crypt_final()
|
/arch/sparc/crypto/ |
D | aes_glue.c | 323 u64 keystream[AES_BLOCK_SIZE / sizeof(u64)]; in ctr_crypt_final() local 329 keystream, AES_BLOCK_SIZE); in ctr_crypt_final() 330 crypto_xor_cpy(dst, (u8 *) keystream, src, nbytes); in ctr_crypt_final()
|