Lines Matching refs:skcipher

660 	struct crypto_skcipher *skcipher = __crypto_skcipher_cast(tfm);  in crypto_skcipher_exit_tfm()  local
661 struct skcipher_alg *alg = crypto_skcipher_alg(skcipher); in crypto_skcipher_exit_tfm()
663 alg->exit(skcipher); in crypto_skcipher_exit_tfm()
668 struct crypto_skcipher *skcipher = __crypto_skcipher_cast(tfm); in crypto_skcipher_init_tfm() local
669 struct skcipher_alg *alg = crypto_skcipher_alg(skcipher); in crypto_skcipher_init_tfm()
671 skcipher_set_needkey(skcipher); in crypto_skcipher_init_tfm()
674 skcipher->base.exit = crypto_skcipher_exit_tfm; in crypto_skcipher_init_tfm()
677 return alg->init(skcipher); in crypto_skcipher_init_tfm()
684 struct skcipher_instance *skcipher = in crypto_skcipher_free_instance() local
687 skcipher->free(skcipher); in crypto_skcipher_free_instance()
694 struct skcipher_alg *skcipher = container_of(alg, struct skcipher_alg, in crypto_skcipher_show() local
701 seq_printf(m, "min keysize : %u\n", skcipher->min_keysize); in crypto_skcipher_show()
702 seq_printf(m, "max keysize : %u\n", skcipher->max_keysize); in crypto_skcipher_show()
703 seq_printf(m, "ivsize : %u\n", skcipher->ivsize); in crypto_skcipher_show()
704 seq_printf(m, "chunksize : %u\n", skcipher->chunksize); in crypto_skcipher_show()
705 seq_printf(m, "walksize : %u\n", skcipher->walksize); in crypto_skcipher_show()
712 struct skcipher_alg *skcipher = container_of(alg, struct skcipher_alg, in crypto_skcipher_report() local
721 rblkcipher.min_keysize = skcipher->min_keysize; in crypto_skcipher_report()
722 rblkcipher.max_keysize = skcipher->max_keysize; in crypto_skcipher_report()
723 rblkcipher.ivsize = skcipher->ivsize; in crypto_skcipher_report()