#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/seq_file.h>
#include <linux/string.h>
#include <linux/crypto.h>
#include <linux/compiler.h>
#include <crypto/algapi.h>
#include <linux/cryptouser.h>
#include <crypto/akcipher.h>
#include <crypto/internal/akcipher.h>
static int crypto_akcipher_report(struct sk_buff *skb, struct crypto_alg *alg)
struct crypto_report_akcipher rakcipher;
memset(&rakcipher, 0, sizeof(rakcipher));
strscpy(rakcipher.type, "akcipher", sizeof(rakcipher.type));
return nla_put(skb, CRYPTOCFGA_REPORT_AKCIPHER,
sizeof(rakcipher), &rakcipher);
static int crypto_akcipher_report(struct sk_buff *skb, struct crypto_alg *alg)
static void crypto_akcipher_show(struct seq_file *m, struct crypto_alg *alg)
static void crypto_akcipher_show(struct seq_file *m, struct crypto_alg *alg)
seq_puts(m, "type : akcipher\n");
static void crypto_akcipher_exit_tfm(struct crypto_tfm *tfm)
struct crypto_akcipher *akcipher = __crypto_akcipher_tfm(tfm);
struct akcipher_alg *alg = crypto_akcipher_alg(akcipher);
static int crypto_akcipher_init_tfm(struct crypto_tfm *tfm)