Symbol: crypto_register_template
crypto/adiantum.c
678
return crypto_register_template(&adiantum_tmpl);
crypto/algapi.c
557
EXPORT_SYMBOL_GPL(crypto_register_template);
crypto/algapi.c
564
err = crypto_register_template(&tmpls[i]);
crypto/authenc.c
441
return crypto_register_template(&crypto_authenc_tmpl);
crypto/authencesn.c
444
return crypto_register_template(&crypto_authenc_esn_tmpl);
crypto/cbc.c
174
return crypto_register_template(&crypto_cbc_tmpl);
crypto/cmac.c
246
return crypto_register_template(&crypto_cmac_tmpl);
crypto/cryptd.c
1128
err = crypto_register_template(&cryptd_tmpl);
crypto/cts.c
397
return crypto_register_template(&crypto_cts_tmpl);
crypto/ecb.c
214
return crypto_register_template(&crypto_ecb_tmpl);
crypto/ecdsa.c
297
ret = crypto_register_template(&ecdsa_x962_tmpl);
crypto/ecdsa.c
301
ret = crypto_register_template(&ecdsa_p1363_tmpl);
crypto/echainiv.c
140
return crypto_register_template(&echainiv_tmpl);
crypto/essiv.c
634
return crypto_register_template(&essiv_tmpl);
crypto/krb5enc.c
491
return crypto_register_template(&crypto_krb5enc_tmpl);
crypto/lrw.c
415
return crypto_register_template(&lrw_tmpl);
crypto/pcbc.c
181
return crypto_register_template(&crypto_pcbc_tmpl);
crypto/pcrypt.c
361
return crypto_register_template(&pcrypt_tmpl);
crypto/rsa.c
409
err = crypto_register_template(&rsa_pkcs1pad_tmpl);
crypto/rsa.c
413
err = crypto_register_template(&rsassa_pkcs1_tmpl);
crypto/seqiv.c
165
return crypto_register_template(&seqiv_tmpl);
crypto/xcbc.c
194
return crypto_register_template(&crypto_xcbc_tmpl);
crypto/xctr.c
177
return crypto_register_template(&crypto_xctr_tmpl);
crypto/xts.c
461
return crypto_register_template(&xts_tmpl);
include/crypto/algapi.h
141
int crypto_register_template(struct crypto_template *tmpl);