Home
last modified time | relevance | path

Searched refs:akcipher (Results 1 – 4 of 4) sorted by relevance

/linux-4.19.296/crypto/
Dakcipher.c60 struct crypto_akcipher *akcipher = __crypto_akcipher_tfm(tfm); in crypto_akcipher_exit_tfm() local
61 struct akcipher_alg *alg = crypto_akcipher_alg(akcipher); in crypto_akcipher_exit_tfm()
63 alg->exit(akcipher); in crypto_akcipher_exit_tfm()
68 struct crypto_akcipher *akcipher = __crypto_akcipher_tfm(tfm); in crypto_akcipher_init_tfm() local
69 struct akcipher_alg *alg = crypto_akcipher_alg(akcipher); in crypto_akcipher_init_tfm()
72 akcipher->base.exit = crypto_akcipher_exit_tfm; in crypto_akcipher_init_tfm()
75 return alg->init(akcipher); in crypto_akcipher_init_tfm()
82 struct akcipher_instance *akcipher = akcipher_instance(inst); in crypto_akcipher_free_instance() local
84 akcipher->free(akcipher); in crypto_akcipher_free_instance()
DMakefile31 obj-$(CONFIG_CRYPTO_AKCIPHER2) += akcipher.o
Dtestmgr.c136 struct akcipher_test_suite akcipher; member
2394 if (desc->suite.akcipher.vecs) in alg_test_akcipher()
2395 err = test_akcipher(tfm, desc->alg, desc->suite.akcipher.vecs, in alg_test_akcipher()
2396 desc->suite.akcipher.count); in alg_test_akcipher()
3324 .akcipher = __VECS(pkcs1pad_rsa_tv_template)
3423 .akcipher = __VECS(rsa_tv_template)
/linux-4.19.296/include/crypto/internal/
Dakcipher.h41 static inline void akcipher_set_reqsize(struct crypto_akcipher *akcipher, in akcipher_set_reqsize() argument
44 crypto_akcipher_alg(akcipher)->reqsize = reqsize; in akcipher_set_reqsize()
76 struct crypto_akcipher *akcipher) in akcipher_alg_instance() argument
78 return akcipher_instance(crypto_tfm_alg_instance(&akcipher->base)); in akcipher_alg_instance()