Lines Matching defs:akcipher
8 #include <crypto/internal/akcipher.h>
30 strscpy(rakcipher.type, "akcipher", sizeof(rakcipher.type));
41 seq_puts(m, "type : akcipher\n");
46 struct crypto_akcipher *akcipher = __crypto_akcipher_tfm(tfm);
47 struct akcipher_alg *alg = crypto_akcipher_alg(akcipher);
49 alg->exit(akcipher);
54 struct crypto_akcipher *akcipher = __crypto_akcipher_tfm(tfm);
55 struct akcipher_alg *alg = crypto_akcipher_alg(akcipher);
58 akcipher->base.exit = crypto_akcipher_exit_tfm;
61 return alg->init(akcipher);
68 struct akcipher_instance *akcipher = akcipher_instance(inst);
70 akcipher->free(akcipher);
76 struct akcipher_alg *akcipher = __crypto_akcipher_alg(alg);
80 istat = akcipher_get_stat(akcipher);
84 strscpy(rakcipher.type, "akcipher", sizeof(rakcipher.type));
293 struct crypto_akcipher *akcipher;
298 akcipher = crypto_create_tfm(calg, &crypto_akcipher_type);
299 if (IS_ERR(akcipher)) {
301 return PTR_ERR(akcipher);
304 *ctx = akcipher;