Lines Matching refs:cipher_alg
4182 struct iproc_alg_s *cipher_alg) in generic_cra_init() argument
4190 ctx->alg = cipher_alg; in generic_cra_init()
4191 ctx->cipher = cipher_alg->cipher_info; in generic_cra_init()
4192 ctx->auth = cipher_alg->auth_info; in generic_cra_init()
4193 ctx->auth_first = cipher_alg->auth_first; in generic_cra_init()
4212 struct iproc_alg_s *cipher_alg; in skcipher_init_tfm() local
4218 cipher_alg = container_of(alg, struct iproc_alg_s, alg.skcipher); in skcipher_init_tfm()
4219 return generic_cra_init(tfm, cipher_alg); in skcipher_init_tfm()
4226 struct iproc_alg_s *cipher_alg; in ahash_cra_init() local
4228 cipher_alg = container_of(__crypto_ahash_alg(alg), struct iproc_alg_s, in ahash_cra_init()
4231 err = generic_cra_init(tfm, cipher_alg); in ahash_cra_init()
4250 struct iproc_alg_s *cipher_alg = container_of(aalg, struct iproc_alg_s, in aead_cra_init() local
4253 int err = generic_cra_init(tfm, cipher_alg); in aead_cra_init()