Home
last modified time | relevance | path

Searched refs:crypto_template (Results 1 – 25 of 47) sorted by relevance

12

/linux-6.3-rc2/include/crypto/
A Dalgapi.h63 struct crypto_template *tmpl;
75 struct crypto_template { struct
80 int (*create)(struct crypto_template *tmpl, struct rtattr **tb); argument
124 int crypto_register_template(struct crypto_template *tmpl);
125 int crypto_register_templates(struct crypto_template *tmpls, int count);
126 void crypto_unregister_template(struct crypto_template *tmpl);
127 void crypto_unregister_templates(struct crypto_template *tmpls, int count);
128 struct crypto_template *crypto_lookup_template(const char *name);
130 int crypto_register_instance(struct crypto_template *tmpl,
/linux-6.3-rc2/crypto/
A Ddh.c551 struct crypto_template *tmpl, struct rtattr **tb, in __dh_safe_prime_create()
832 static int dh_ffdhe2048_create(struct crypto_template *tmpl, in dh_ffdhe2048_create()
838 static int dh_ffdhe3072_create(struct crypto_template *tmpl, in dh_ffdhe3072_create()
844 static int dh_ffdhe4096_create(struct crypto_template *tmpl, in dh_ffdhe4096_create()
850 static int dh_ffdhe6144_create(struct crypto_template *tmpl, in dh_ffdhe6144_create()
856 static int dh_ffdhe8192_create(struct crypto_template *tmpl, in dh_ffdhe8192_create()
862 static struct crypto_template crypto_ffdhe_templates[] = {
892 static struct crypto_template crypto_ffdhe_templates[] = {};
A Dinternal.h24 struct crypto_template;
146 static inline int crypto_tmpl_get(struct crypto_template *tmpl) in crypto_tmpl_get()
151 static inline void crypto_tmpl_put(struct crypto_template *tmpl) in crypto_tmpl_put()
A Decb.c62 static int crypto_ecb_create(struct crypto_template *tmpl, struct rtattr **tb) in crypto_ecb_create()
83 static struct crypto_template crypto_ecb_tmpl = {
A Dofb.c53 static int crypto_ofb_create(struct crypto_template *tmpl, struct rtattr **tb) in crypto_ofb_create()
84 static struct crypto_template crypto_ofb_tmpl = {
A Dalgapi.c80 struct crypto_template *tmpl = inst->tmpl; in crypto_destroy_instance()
122 struct crypto_template *tmpl = inst->tmpl; in crypto_remove_instance()
533 int crypto_register_template(struct crypto_template *tmpl) in crypto_register_template()
535 struct crypto_template *q; in crypto_register_template()
555 int crypto_register_templates(struct crypto_template *tmpls, int count) in crypto_register_templates()
573 void crypto_unregister_template(struct crypto_template *tmpl) in crypto_unregister_template()
602 void crypto_unregister_templates(struct crypto_template *tmpls, int count) in crypto_unregister_templates()
611 static struct crypto_template *__crypto_lookup_template(const char *name) in __crypto_lookup_template()
613 struct crypto_template *q, *tmpl = NULL; in __crypto_lookup_template()
630 struct crypto_template *crypto_lookup_template(const char *name) in crypto_lookup_template()
[all …]
A Dechainiv.c112 static int echainiv_aead_create(struct crypto_template *tmpl, in echainiv_aead_create()
144 static struct crypto_template echainiv_tmpl = {
A Dkeywrap.c264 static int crypto_kw_create(struct crypto_template *tmpl, struct rtattr **tb) in crypto_kw_create()
297 static struct crypto_template crypto_kw_tmpl = {
A Dseqiv.c135 static int seqiv_aead_create(struct crypto_template *tmpl, struct rtattr **tb) in seqiv_aead_create()
166 static struct crypto_template seqiv_tmpl = {
A Dxctr.c131 static int crypto_xctr_create(struct crypto_template *tmpl, struct rtattr **tb) in crypto_xctr_create()
169 static struct crypto_template crypto_xctr_tmpl = {
A Dctr.c127 static int crypto_ctr_create(struct crypto_template *tmpl, struct rtattr **tb) in crypto_ctr_create()
257 static int crypto_rfc3686_create(struct crypto_template *tmpl, in crypto_rfc3686_create()
331 static struct crypto_template crypto_ctr_tmpls[] = {
A Dpcrypt.c232 static int pcrypt_create_aead(struct crypto_template *tmpl, struct rtattr **tb, in pcrypt_create_aead()
291 static int pcrypt_create(struct crypto_template *tmpl, struct rtattr **tb) in pcrypt_create()
334 static struct crypto_template pcrypt_tmpl = {
A Dpcbc.c154 static int crypto_pcbc_create(struct crypto_template *tmpl, struct rtattr **tb) in crypto_pcbc_create()
173 static struct crypto_template crypto_pcbc_tmpl = {
A Dhctr2.c404 static int hctr2_create_common(struct crypto_template *tmpl, in hctr2_create_common()
517 static int hctr2_create_base(struct crypto_template *tmpl, struct rtattr **tb) in hctr2_create_base()
533 static int hctr2_create(struct crypto_template *tmpl, struct rtattr **tb) in hctr2_create()
549 static struct crypto_template hctr2_tmpls[] = {
A Dcbc.c174 static int crypto_cbc_create(struct crypto_template *tmpl, struct rtattr **tb) in crypto_cbc_create()
202 static struct crypto_template crypto_cbc_tmpl = {
A Dcfb.c201 static int crypto_cfb_create(struct crypto_template *tmpl, struct rtattr **tb) in crypto_cfb_create()
232 static struct crypto_template crypto_cfb_tmpl = {
A Dccm.c445 static int crypto_ccm_create_common(struct crypto_template *tmpl, in crypto_ccm_create_common()
530 static int crypto_ccm_create(struct crypto_template *tmpl, struct rtattr **tb) in crypto_ccm_create()
551 static int crypto_ccm_base_create(struct crypto_template *tmpl, in crypto_ccm_base_create()
705 static int crypto_rfc4309_create(struct crypto_template *tmpl, in crypto_rfc4309_create()
862 static int cbcmac_create(struct crypto_template *tmpl, struct rtattr **tb) in cbcmac_create()
916 static struct crypto_template crypto_ccm_tmpls[] = {
A Dhmac.c169 static int hmac_create(struct crypto_template *tmpl, struct rtattr **tb) in hmac_create()
242 static struct crypto_template hmac_tmpl = {
A Dxcbc.c189 static int xcbc_create(struct crypto_template *tmpl, struct rtattr **tb) in xcbc_create()
254 static struct crypto_template crypto_xcbc_tmpl = {
A Dcmac.c223 static int cmac_create(struct crypto_template *tmpl, struct rtattr **tb) in cmac_create()
295 static struct crypto_template crypto_cmac_tmpl = {
/linux-6.3-rc2/include/crypto/internal/
A Dgeniv.h22 struct aead_instance *aead_geniv_alloc(struct crypto_template *tmpl,
A Dskcipher.h144 int skcipher_register_instance(struct crypto_template *tmpl,
242 struct crypto_template *tmpl, struct rtattr **tb);
A Drsa.h56 extern struct crypto_template rsa_pkcs1pad_tmpl;
A Dhash.h75 int ahash_register_instance(struct crypto_template *tmpl,
113 int shash_register_instance(struct crypto_template *tmpl,
A Dkpp.h181 int kpp_register_instance(struct crypto_template *tmpl,

Completed in 33 milliseconds

12