tfm_ecdh           93 net/bluetooth/smp.c 	struct crypto_kpp	*tfm_ecdh;
tfm_ecdh          131 net/bluetooth/smp.c 	struct crypto_kpp	*tfm_ecdh;
tfm_ecdh          561 net/bluetooth/smp.c 		err = set_ecdh_privkey(smp->tfm_ecdh, debug_sk);
tfm_ecdh          569 net/bluetooth/smp.c 			err = generate_ecdh_keys(smp->tfm_ecdh, smp->local_pk);
tfm_ecdh          767 net/bluetooth/smp.c 	crypto_free_kpp(smp->tfm_ecdh);
tfm_ecdh         1389 net/bluetooth/smp.c 	smp->tfm_ecdh = crypto_alloc_kpp("ecdh", CRYPTO_ALG_INTERNAL, 0);
tfm_ecdh         1390 net/bluetooth/smp.c 	if (IS_ERR(smp->tfm_ecdh)) {
tfm_ecdh         1891 net/bluetooth/smp.c 		if (set_ecdh_privkey(smp->tfm_ecdh, debug_sk))
tfm_ecdh         1898 net/bluetooth/smp.c 			if (generate_ecdh_keys(smp->tfm_ecdh, smp->local_pk))
tfm_ecdh         2679 net/bluetooth/smp.c 	struct crypto_kpp *tfm_ecdh;
tfm_ecdh         2724 net/bluetooth/smp.c 		tfm_ecdh = smp_dev->tfm_ecdh;
tfm_ecdh         2726 net/bluetooth/smp.c 		tfm_ecdh = smp->tfm_ecdh;
tfm_ecdh         2729 net/bluetooth/smp.c 	if (compute_ecdh_secret(tfm_ecdh, smp->remote_pk, smp->dhkey))
tfm_ecdh         3219 net/bluetooth/smp.c 	struct crypto_kpp *tfm_ecdh;
tfm_ecdh         3237 net/bluetooth/smp.c 	tfm_ecdh = crypto_alloc_kpp("ecdh", CRYPTO_ALG_INTERNAL, 0);
tfm_ecdh         3238 net/bluetooth/smp.c 	if (IS_ERR(tfm_ecdh)) {
tfm_ecdh         3242 net/bluetooth/smp.c 		return ERR_CAST(tfm_ecdh);
tfm_ecdh         3247 net/bluetooth/smp.c 	smp->tfm_ecdh = tfm_ecdh;
tfm_ecdh         3254 net/bluetooth/smp.c 			crypto_free_kpp(smp->tfm_ecdh);
tfm_ecdh         3301 net/bluetooth/smp.c 		crypto_free_kpp(smp->tfm_ecdh);
tfm_ecdh         3536 net/bluetooth/smp.c static int __init test_debug_key(struct crypto_kpp *tfm_ecdh)
tfm_ecdh         3541 net/bluetooth/smp.c 	err = set_ecdh_privkey(tfm_ecdh, debug_sk);
tfm_ecdh         3545 net/bluetooth/smp.c 	err = generate_ecdh_public_key(tfm_ecdh, pk);
tfm_ecdh         3802 net/bluetooth/smp.c 				struct crypto_kpp *tfm_ecdh)
tfm_ecdh         3810 net/bluetooth/smp.c 	err = test_debug_key(tfm_ecdh);
tfm_ecdh         3886 net/bluetooth/smp.c 	struct crypto_kpp *tfm_ecdh;
tfm_ecdh         3895 net/bluetooth/smp.c 	tfm_ecdh = crypto_alloc_kpp("ecdh", CRYPTO_ALG_INTERNAL, 0);
tfm_ecdh         3896 net/bluetooth/smp.c 	if (IS_ERR(tfm_ecdh)) {
tfm_ecdh         3899 net/bluetooth/smp.c 		return PTR_ERR(tfm_ecdh);
tfm_ecdh         3902 net/bluetooth/smp.c 	err = run_selftests(tfm_cmac, tfm_ecdh);
tfm_ecdh         3905 net/bluetooth/smp.c 	crypto_free_kpp(tfm_ecdh);