Lines Matching refs:tfm
296 walk->walk_blocksize = crypto_blkcipher_blocksize(desc->tfm); in blkcipher_walk_virt()
298 walk->ivsize = crypto_blkcipher_ivsize(desc->tfm); in blkcipher_walk_virt()
299 walk->alignmask = crypto_blkcipher_alignmask(desc->tfm); in blkcipher_walk_virt()
308 walk->walk_blocksize = crypto_blkcipher_blocksize(desc->tfm); in blkcipher_walk_phys()
310 walk->ivsize = crypto_blkcipher_ivsize(desc->tfm); in blkcipher_walk_phys()
311 walk->alignmask = crypto_blkcipher_alignmask(desc->tfm); in blkcipher_walk_phys()
347 walk->cipher_blocksize = crypto_blkcipher_blocksize(desc->tfm); in blkcipher_walk_virt_block()
348 walk->ivsize = crypto_blkcipher_ivsize(desc->tfm); in blkcipher_walk_virt_block()
349 walk->alignmask = crypto_blkcipher_alignmask(desc->tfm); in blkcipher_walk_virt_block()
356 struct crypto_aead *tfm, in blkcipher_aead_walk_virt_block() argument
361 walk->cipher_blocksize = crypto_aead_blocksize(tfm); in blkcipher_aead_walk_virt_block()
362 walk->ivsize = crypto_aead_ivsize(tfm); in blkcipher_aead_walk_virt_block()
363 walk->alignmask = crypto_aead_alignmask(tfm); in blkcipher_aead_walk_virt_block()
368 static int setkey_unaligned(struct crypto_tfm *tfm, const u8 *key, in setkey_unaligned() argument
371 struct blkcipher_alg *cipher = &tfm->__crt_alg->cra_blkcipher; in setkey_unaligned()
372 unsigned long alignmask = crypto_tfm_alg_alignmask(tfm); in setkey_unaligned()
384 ret = cipher->setkey(tfm, alignbuffer, keylen); in setkey_unaligned()
390 static int setkey(struct crypto_tfm *tfm, const u8 *key, unsigned int keylen) in setkey() argument
392 struct blkcipher_alg *cipher = &tfm->__crt_alg->cra_blkcipher; in setkey()
393 unsigned long alignmask = crypto_tfm_alg_alignmask(tfm); in setkey()
396 tfm->crt_flags |= CRYPTO_TFM_RES_BAD_KEY_LEN; in setkey()
401 return setkey_unaligned(tfm, key, keylen); in setkey()
403 return cipher->setkey(tfm, key, keylen); in setkey()
406 static int async_setkey(struct crypto_ablkcipher *tfm, const u8 *key, in async_setkey() argument
409 return setkey(crypto_ablkcipher_tfm(tfm), key, keylen); in async_setkey()
414 struct crypto_tfm *tfm = req->base.tfm; in async_encrypt() local
415 struct blkcipher_alg *alg = &tfm->__crt_alg->cra_blkcipher; in async_encrypt()
417 .tfm = __crypto_blkcipher_cast(tfm), in async_encrypt()
428 struct crypto_tfm *tfm = req->base.tfm; in async_decrypt() local
429 struct blkcipher_alg *alg = &tfm->__crt_alg->cra_blkcipher; in async_decrypt()
431 .tfm = __crypto_blkcipher_cast(tfm), in async_decrypt()
454 static int crypto_init_blkcipher_ops_async(struct crypto_tfm *tfm) in crypto_init_blkcipher_ops_async() argument
456 struct ablkcipher_tfm *crt = &tfm->crt_ablkcipher; in crypto_init_blkcipher_ops_async()
457 struct blkcipher_alg *alg = &tfm->__crt_alg->cra_blkcipher; in crypto_init_blkcipher_ops_async()
462 crt->base = __crypto_ablkcipher_cast(tfm); in crypto_init_blkcipher_ops_async()
468 static int crypto_init_blkcipher_ops_sync(struct crypto_tfm *tfm) in crypto_init_blkcipher_ops_sync() argument
470 struct blkcipher_tfm *crt = &tfm->crt_blkcipher; in crypto_init_blkcipher_ops_sync()
471 struct blkcipher_alg *alg = &tfm->__crt_alg->cra_blkcipher; in crypto_init_blkcipher_ops_sync()
472 unsigned long align = crypto_tfm_alg_alignmask(tfm) + 1; in crypto_init_blkcipher_ops_sync()
479 addr = (unsigned long)crypto_tfm_ctx(tfm); in crypto_init_blkcipher_ops_sync()
481 addr += ALIGN(tfm->__crt_alg->cra_ctxsize, align); in crypto_init_blkcipher_ops_sync()
487 static int crypto_init_blkcipher_ops(struct crypto_tfm *tfm, u32 type, u32 mask) in crypto_init_blkcipher_ops() argument
489 struct blkcipher_alg *alg = &tfm->__crt_alg->cra_blkcipher; in crypto_init_blkcipher_ops()
495 return crypto_init_blkcipher_ops_sync(tfm); in crypto_init_blkcipher_ops()
497 return crypto_init_blkcipher_ops_async(tfm); in crypto_init_blkcipher_ops()