Lines Matching refs:skcipher

661 	struct crypto_skcipher *skcipher = __crypto_skcipher_cast(tfm);  in crypto_skcipher_exit_tfm()  local
662 struct skcipher_alg *alg = crypto_skcipher_alg(skcipher); in crypto_skcipher_exit_tfm()
664 alg->exit(skcipher); in crypto_skcipher_exit_tfm()
669 struct crypto_skcipher *skcipher = __crypto_skcipher_cast(tfm); in crypto_skcipher_init_tfm() local
670 struct skcipher_alg *alg = crypto_skcipher_alg(skcipher); in crypto_skcipher_init_tfm()
672 skcipher_set_needkey(skcipher); in crypto_skcipher_init_tfm()
675 skcipher->base.exit = crypto_skcipher_exit_tfm; in crypto_skcipher_init_tfm()
678 return alg->init(skcipher); in crypto_skcipher_init_tfm()
685 struct skcipher_instance *skcipher = in crypto_skcipher_free_instance() local
688 skcipher->free(skcipher); in crypto_skcipher_free_instance()
695 struct skcipher_alg *skcipher = container_of(alg, struct skcipher_alg, in crypto_skcipher_show() local
702 seq_printf(m, "min keysize : %u\n", skcipher->min_keysize); in crypto_skcipher_show()
703 seq_printf(m, "max keysize : %u\n", skcipher->max_keysize); in crypto_skcipher_show()
704 seq_printf(m, "ivsize : %u\n", skcipher->ivsize); in crypto_skcipher_show()
705 seq_printf(m, "chunksize : %u\n", skcipher->chunksize); in crypto_skcipher_show()
706 seq_printf(m, "walksize : %u\n", skcipher->walksize); in crypto_skcipher_show()
713 struct skcipher_alg *skcipher = container_of(alg, struct skcipher_alg, in crypto_skcipher_report() local
722 rblkcipher.min_keysize = skcipher->min_keysize; in crypto_skcipher_report()
723 rblkcipher.max_keysize = skcipher->max_keysize; in crypto_skcipher_report()
724 rblkcipher.ivsize = skcipher->ivsize; in crypto_skcipher_report()