Lines Matching refs:l
2049 struct crypto_ec_point *l = NULL; in dpp_auth_derive_l_responder() local
2075 l = crypto_ec_point_init((struct crypto_ec *)group); in dpp_auth_derive_l_responder()
2076 if (!l || (crypto_ec_point_mul((struct crypto_ec *)group, BI_point, sum, l) != 0) || in dpp_auth_derive_l_responder()
2077 (crypto_ec_get_affine_coordinates((struct crypto_ec *)group, l, lx, NULL) != 0)) { in dpp_auth_derive_l_responder()
2088 crypto_ec_point_deinit(l, 1); in dpp_auth_derive_l_responder()
2099 struct crypto_ec_point *l = NULL, *sum = NULL; in dpp_auth_derive_l_initiator() local
2118 l = crypto_ec_point_init((struct crypto_ec *)group); in dpp_auth_derive_l_initiator()
2119 if (!sum || !l || in dpp_auth_derive_l_initiator()
2121 crypto_ec_point_mul((struct crypto_ec *)group, sum, bI_bn, l) != 0 || in dpp_auth_derive_l_initiator()
2122 crypto_ec_get_affine_coordinates((struct crypto_ec *)group, l, lx, NULL) != 0) { in dpp_auth_derive_l_initiator()
2134 crypto_ec_point_deinit(l, 1); in dpp_auth_derive_l_initiator()