23 #include <linux/errno.h>
24 #include <linux/module.h>
26 #include <linux/string.h>
41 static unsigned int crypto_pcomp_extsize(
struct crypto_alg *alg)
46 static int crypto_pcomp_init_tfm(
struct crypto_tfm *tfm)
80 static const struct crypto_type crypto_pcomp_type = {
81 .extsize = crypto_pcomp_extsize,
82 .init = crypto_pcomp_init,
83 .init_tfm = crypto_pcomp_init_tfm,
85 .show = crypto_pcomp_show,
87 .report = crypto_pcomp_report,
105 base->
cra_type = &crypto_pcomp_type;