Lines Matching refs:skcipher

683 	struct crypto_skcipher *skcipher = __crypto_skcipher_cast(tfm);  in crypto_skcipher_exit_tfm()  local
684 struct skcipher_alg *alg = crypto_skcipher_alg(skcipher); in crypto_skcipher_exit_tfm()
686 alg->exit(skcipher); in crypto_skcipher_exit_tfm()
691 struct crypto_skcipher *skcipher = __crypto_skcipher_cast(tfm); in crypto_skcipher_init_tfm() local
692 struct skcipher_alg *alg = crypto_skcipher_alg(skcipher); in crypto_skcipher_init_tfm()
694 skcipher_set_needkey(skcipher); in crypto_skcipher_init_tfm()
697 skcipher->base.exit = crypto_skcipher_exit_tfm; in crypto_skcipher_init_tfm()
700 return alg->init(skcipher); in crypto_skcipher_init_tfm()
707 struct skcipher_instance *skcipher = in crypto_skcipher_free_instance() local
710 skcipher->free(skcipher); in crypto_skcipher_free_instance()
717 struct skcipher_alg *skcipher = __crypto_skcipher_alg(alg); in crypto_skcipher_show() local
723 seq_printf(m, "min keysize : %u\n", skcipher->min_keysize); in crypto_skcipher_show()
724 seq_printf(m, "max keysize : %u\n", skcipher->max_keysize); in crypto_skcipher_show()
725 seq_printf(m, "ivsize : %u\n", skcipher->ivsize); in crypto_skcipher_show()
726 seq_printf(m, "chunksize : %u\n", skcipher->chunksize); in crypto_skcipher_show()
727 seq_printf(m, "walksize : %u\n", skcipher->walksize); in crypto_skcipher_show()
733 struct skcipher_alg *skcipher = __crypto_skcipher_alg(alg); in crypto_skcipher_report() local
742 rblkcipher.min_keysize = skcipher->min_keysize; in crypto_skcipher_report()
743 rblkcipher.max_keysize = skcipher->max_keysize; in crypto_skcipher_report()
744 rblkcipher.ivsize = skcipher->ivsize; in crypto_skcipher_report()
753 struct skcipher_alg *skcipher = __crypto_skcipher_alg(alg); in crypto_skcipher_report_stat() local
757 istat = skcipher_get_stat(skcipher); in crypto_skcipher_report_stat()