Lines Matching refs:fallback_tfm
111 skcipher_request_set_tfm(&rctx->fallback_req, op->fallback_tfm); in sl3516_ce_cipher_fallback()
324 op->fallback_tfm = crypto_alloc_skcipher(name, 0, CRYPTO_ALG_NEED_FALLBACK); in sl3516_ce_cipher_init()
325 if (IS_ERR(op->fallback_tfm)) { in sl3516_ce_cipher_init()
327 name, PTR_ERR(op->fallback_tfm)); in sl3516_ce_cipher_init()
328 return PTR_ERR(op->fallback_tfm); in sl3516_ce_cipher_init()
332 crypto_skcipher_reqsize(op->fallback_tfm); in sl3516_ce_cipher_init()
336 crypto_tfm_alg_driver_name(crypto_skcipher_tfm(op->fallback_tfm))); in sl3516_ce_cipher_init()
349 crypto_free_skcipher(op->fallback_tfm); in sl3516_ce_cipher_init()
358 crypto_free_skcipher(op->fallback_tfm); in sl3516_ce_cipher_exit()
385 crypto_skcipher_clear_flags(op->fallback_tfm, CRYPTO_TFM_REQ_MASK); in sl3516_ce_aes_setkey()
386 crypto_skcipher_set_flags(op->fallback_tfm, tfm->base.crt_flags & CRYPTO_TFM_REQ_MASK); in sl3516_ce_aes_setkey()
388 return crypto_skcipher_setkey(op->fallback_tfm, key, keylen); in sl3516_ce_aes_setkey()