• Home
  • Raw
  • Download

Lines Matching refs:alg

250 	struct ahash_alg	alg;  member
255 struct crypto_alg *alg = tfm->__crt_alg; in n2_ahash_alg() local
258 ahash_alg = container_of(alg, struct ahash_alg, halg.base); in n2_ahash_alg()
260 return container_of(ahash_alg, struct n2_ahash_alg, alg); in n2_ahash_alg()
270 struct crypto_alg *alg = tfm->__crt_alg; in n2_hmac_alg() local
273 ahash_alg = container_of(alg, struct ahash_alg, halg.base); in n2_hmac_alg()
275 return container_of(ahash_alg, struct n2_hmac_alg, derived.alg); in n2_hmac_alg()
703 struct crypto_alg alg; member
708 struct crypto_alg *alg = tfm->__crt_alg; in n2_cipher_alg() local
710 return container_of(alg, struct n2_cipher_alg, alg); in n2_cipher_alg()
1365 struct n2_ahash_alg *alg, *alg_tmp; in __n2_unregister_algs() local
1369 crypto_unregister_alg(&cipher->alg); in __n2_unregister_algs()
1374 crypto_unregister_ahash(&hmac->derived.alg); in __n2_unregister_algs()
1378 list_for_each_entry_safe(alg, alg_tmp, &ahash_algs, entry) { in __n2_unregister_algs()
1379 crypto_unregister_ahash(&alg->alg); in __n2_unregister_algs()
1380 list_del(&alg->entry); in __n2_unregister_algs()
1381 kfree(alg); in __n2_unregister_algs()
1394 struct crypto_alg *alg; in __n2_register_one_cipher() local
1400 alg = &p->alg; in __n2_register_one_cipher()
1402 snprintf(alg->cra_name, CRYPTO_MAX_ALG_NAME, "%s", tmpl->name); in __n2_register_one_cipher()
1403 snprintf(alg->cra_driver_name, CRYPTO_MAX_ALG_NAME, "%s-n2", tmpl->drv_name); in __n2_register_one_cipher()
1404 alg->cra_priority = N2_CRA_PRIORITY; in __n2_register_one_cipher()
1405 alg->cra_flags = CRYPTO_ALG_TYPE_ABLKCIPHER | in __n2_register_one_cipher()
1407 alg->cra_blocksize = tmpl->block_size; in __n2_register_one_cipher()
1409 alg->cra_ctxsize = sizeof(struct n2_cipher_context); in __n2_register_one_cipher()
1410 alg->cra_type = &crypto_ablkcipher_type; in __n2_register_one_cipher()
1411 alg->cra_u.ablkcipher = tmpl->ablkcipher; in __n2_register_one_cipher()
1412 alg->cra_init = n2_cipher_cra_init; in __n2_register_one_cipher()
1413 alg->cra_module = THIS_MODULE; in __n2_register_one_cipher()
1416 err = crypto_register_alg(alg); in __n2_register_one_cipher()
1418 pr_err("%s alg registration failed\n", alg->cra_name); in __n2_register_one_cipher()
1422 pr_info("%s alg registered\n", alg->cra_name); in __n2_register_one_cipher()
1437 p->child_alg = n2ahash->alg.halg.base.cra_name; in __n2_register_one_hmac()
1441 ahash = &p->derived.alg; in __n2_register_one_hmac()
1483 ahash = &p->alg; in __n2_register_one_ahash()