Lines Matching refs:ecgroup
470 const EC_GROUP *ecgroup = NULL; in ec_create_shared() local
476 if ((ecgroup = EC_KEY_get0_group(group->ec)) == NULL || in ec_create_shared()
486 if (!EC_KEY_set_group(exkey, ecgroup)) in ec_create_shared()
495 if ((secretp = EC_POINT_new(ecgroup)) == NULL) in ec_create_shared()
498 if (!EC_POINT_mul(ecgroup, secretp, NULL, exchangep, privkey, NULL)) in ec_create_shared()
519 const EC_GROUP *ecgroup = NULL; in ec_point2raw() local
548 if ((ecgroup = EC_KEY_get0_group(group->ec)) == NULL) in ec_point2raw()
551 if (!EC_POINT_get_affine_coordinates(ecgroup, point, x, y, bnctx)) in ec_point2raw()
582 const EC_GROUP *ecgroup = NULL; in ec_raw2point() local
605 if ((ecgroup = EC_KEY_get0_group(group->ec)) == NULL) in ec_raw2point()
608 if ((point = EC_POINT_new(ecgroup)) == NULL) in ec_raw2point()
611 if (!EC_POINT_set_affine_coordinates(ecgroup, point, x, y, bnctx)) in ec_raw2point()