Lines Matching full:kpp
3 * Key-agreement Protocol Primitives (KPP)
19 #include <crypto/kpp.h>
20 #include <crypto/internal/kpp.h>
30 strscpy(rkpp.type, "kpp", sizeof(rkpp.type)); in crypto_kpp_report()
46 seq_puts(m, "type : kpp\n"); in crypto_kpp_show()
51 struct crypto_kpp *kpp = __crypto_kpp_tfm(tfm); in crypto_kpp_exit_tfm() local
52 struct kpp_alg *alg = crypto_kpp_alg(kpp); in crypto_kpp_exit_tfm()
54 alg->exit(kpp); in crypto_kpp_exit_tfm()
59 struct crypto_kpp *kpp = __crypto_kpp_tfm(tfm); in crypto_kpp_init_tfm() local
60 struct kpp_alg *alg = crypto_kpp_alg(kpp); in crypto_kpp_init_tfm()
63 kpp->base.exit = crypto_kpp_exit_tfm; in crypto_kpp_init_tfm()
66 return alg->init(kpp); in crypto_kpp_init_tfm()