Lines Matching refs:AES_BLOCK_SIZE

54 	u8 b[AES_BLOCK_SIZE];
177 while ((blocks = (walk.nbytes / AES_BLOCK_SIZE))) {
182 err = skcipher_walk_done(&walk, walk.nbytes % AES_BLOCK_SIZE);
197 while ((blocks = (walk.nbytes / AES_BLOCK_SIZE))) {
202 err = skcipher_walk_done(&walk, walk.nbytes % AES_BLOCK_SIZE);
215 while ((blocks = (walk->nbytes / AES_BLOCK_SIZE))) {
221 err = skcipher_walk_done(walk, walk->nbytes % AES_BLOCK_SIZE);
245 while ((blocks = (walk->nbytes / AES_BLOCK_SIZE))) {
251 err = skcipher_walk_done(walk, walk->nbytes % AES_BLOCK_SIZE);
271 int cbc_blocks = DIV_ROUND_UP(req->cryptlen, AES_BLOCK_SIZE) - 2;
282 if (req->cryptlen <= AES_BLOCK_SIZE) {
283 if (req->cryptlen < AES_BLOCK_SIZE)
290 cbc_blocks * AES_BLOCK_SIZE,
298 if (req->cryptlen == AES_BLOCK_SIZE)
309 req->cryptlen - cbc_blocks * AES_BLOCK_SIZE,
329 int cbc_blocks = DIV_ROUND_UP(req->cryptlen, AES_BLOCK_SIZE) - 2;
340 if (req->cryptlen <= AES_BLOCK_SIZE) {
341 if (req->cryptlen < AES_BLOCK_SIZE)
348 cbc_blocks * AES_BLOCK_SIZE,
356 if (req->cryptlen == AES_BLOCK_SIZE)
367 req->cryptlen - cbc_blocks * AES_BLOCK_SIZE,
392 while ((blocks = (walk.nbytes / AES_BLOCK_SIZE))) {
398 err = skcipher_walk_done(&walk, walk.nbytes % AES_BLOCK_SIZE);
401 u8 __aligned(8) tail[AES_BLOCK_SIZE];
449 int tail = req->cryptlen % AES_BLOCK_SIZE;
455 if (req->cryptlen < AES_BLOCK_SIZE)
462 AES_BLOCK_SIZE) - 2;
471 xts_blocks * AES_BLOCK_SIZE,
479 for (first = 1; walk.nbytes >= AES_BLOCK_SIZE; first = 0) {
483 nbytes &= ~(AES_BLOCK_SIZE - 1);
500 skcipher_request_set_crypt(req, src, dst, AES_BLOCK_SIZE + tail,
521 int tail = req->cryptlen % AES_BLOCK_SIZE;
527 if (req->cryptlen < AES_BLOCK_SIZE)
534 AES_BLOCK_SIZE) - 2;
543 xts_blocks * AES_BLOCK_SIZE,
551 for (first = 1; walk.nbytes >= AES_BLOCK_SIZE; first = 0) {
555 nbytes &= ~(AES_BLOCK_SIZE - 1);
572 skcipher_request_set_crypt(req, src, dst, AES_BLOCK_SIZE + tail,
593 .base.cra_blocksize = AES_BLOCK_SIZE,
607 .base.cra_blocksize = AES_BLOCK_SIZE,
613 .ivsize = AES_BLOCK_SIZE,
622 .base.cra_blocksize = AES_BLOCK_SIZE,
628 .ivsize = AES_BLOCK_SIZE,
629 .walksize = 2 * AES_BLOCK_SIZE,
644 .ivsize = AES_BLOCK_SIZE,
645 .chunksize = AES_BLOCK_SIZE,
659 .ivsize = AES_BLOCK_SIZE,
660 .chunksize = AES_BLOCK_SIZE,
669 .base.cra_blocksize = AES_BLOCK_SIZE,
675 .ivsize = AES_BLOCK_SIZE,
676 .walksize = 2 * AES_BLOCK_SIZE,