Lines Matching refs:point_q
4380 EC_POINT *point_q = NULL; in php_openssl_pkey_init_legacy_ec() local
4477 point_q = EC_POINT_new(group); in php_openssl_pkey_init_legacy_ec()
4478 if (!point_q || !EC_POINT_mul(group, point_q, d, NULL, NULL, bctx)) { in php_openssl_pkey_init_legacy_ec()
4483 point_q = EC_POINT_new(group); in php_openssl_pkey_init_legacy_ec()
4484 if (!point_q || !EC_POINT_set_affine_coordinates_GFp(group, point_q, x, y, bctx)) { in php_openssl_pkey_init_legacy_ec()
4489 if (point_q != NULL) { in php_openssl_pkey_init_legacy_ec()
4490 if (!EC_KEY_set_public_key(eckey, point_q)) { in php_openssl_pkey_init_legacy_ec()
4506 EC_POINT_free(point_q); in php_openssl_pkey_init_legacy_ec()
4527 EC_POINT *point_q = NULL; in php_openssl_pkey_init_ec() local
4644 point_q = EC_POINT_new(group); in php_openssl_pkey_init_ec()
4645 if (!point_q || !EC_POINT_mul(group, point_q, d, NULL, NULL, bctx) || in php_openssl_pkey_init_ec()
4651 point_q = EC_POINT_new(group); in php_openssl_pkey_init_ec()
4652 if (!point_q || !EC_POINT_set_affine_coordinates(group, point_q, x, y, bctx)) { in php_openssl_pkey_init_ec()
4657 if (point_q) { in php_openssl_pkey_init_ec()
4659 EC_POINT_point2buf(group, point_q, POINT_CONVERSION_COMPRESSED, &point_q_buf, bctx); in php_openssl_pkey_init_ec()
4704 EC_POINT_free(point_q); in php_openssl_pkey_init_ec()