Home
last modified time | relevance | path

Searched refs:MAX_CIPHER_BLOCKSIZE (Results 1 – 7 of 7) sorted by relevance

/linux-4.19.296/crypto/
Dcfb.c57 u8 tmp[MAX_CIPHER_BLOCKSIZE + MAX_CIPHER_ALIGNMASK]; in crypto_cfb_final()
98 u8 tmp[MAX_CIPHER_BLOCKSIZE]; in crypto_cfb_encrypt_inplace()
168 u8 tmp[MAX_CIPHER_BLOCKSIZE]; in crypto_cfb_decrypt_inplace()
Dpcbc.c76 u8 tmpbuf[MAX_CIPHER_BLOCKSIZE]; in crypto_pcbc_encrypt_inplace()
144 u8 tmpbuf[MAX_CIPHER_BLOCKSIZE] __aligned(__alignof__(u32)); in crypto_pcbc_decrypt_inplace()
Dcipher.c71 u8 buffer[MAX_CIPHER_BLOCKSIZE + MAX_CIPHER_ALIGNMASK]; in cipher_crypt_unaligned()
Dcts.c108 u8 d[MAX_CIPHER_BLOCKSIZE * 2] __aligned(__alignof__(u32)); in cts_cbc_encrypt()
187 u8 d[MAX_CIPHER_BLOCKSIZE * 2] __aligned(__alignof__(u32)); in cts_cbc_decrypt()
Dctr.c61 u8 tmp[MAX_CIPHER_BLOCKSIZE + MAX_CIPHER_ALIGNMASK]; in crypto_ctr_crypt_final()
109 u8 tmp[MAX_CIPHER_BLOCKSIZE + MAX_CIPHER_ALIGNMASK]; in crypto_ctr_crypt_inplace()
Dalgapi.c68 if (alg->cra_blocksize > MAX_CIPHER_BLOCKSIZE) in crypto_check_alg()
/linux-4.19.296/include/crypto/
Dalgapi.h25 #define MAX_CIPHER_BLOCKSIZE 16 macro