EC_POINT_mul
if (!EC_POINT_mul(group, pub_key, priv_key, NULL, NULL, NULL)) {
if (!EC_POINT_mul(ret->group, ret->pub_key, ret->priv_key,
if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx))
if (!EC_POINT_mul(eckey->group, pub_key, priv_key, NULL, NULL, ctx))
if (!EC_POINT_mul(eckey->group, point, NULL, eckey->pub_key, order, ctx)) {
if (!EC_POINT_mul(eckey->group, point, eckey->priv_key,
return EC_POINT_mul(group, r, scalar, points[0], scalars[0],
return EC_POINT_mul(group, r, scalar, NULL, NULL, ctx);
if (!EC_POINT_mul(group, tmp, NULL, pub_key, priv_key, ctx)) {
if (!EC_POINT_mul(group, point, k, NULL, NULL, ctx)) {
if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx)) {
if (EC_POINT_mul(group, pub_key, priv_key, NULL, NULL, ctx) == 0)
if (EC_POINT_mul(group, C, k, NULL, NULL, ctx) == 0) {
if (EC_POINT_mul(group, C, z1, pub_key, z2, ctx) == 0) {
if (EC_POINT_mul(group, pnt, NULL, pub_key, p, ctx) == 0)
if (EC_POINT_mul(key->group, point, NULL, key->pub_key, order,
if (EC_POINT_mul(key->group, point, key->priv_key, NULL, NULL,
int EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *n, const EC_POINT *q, const BIGNUM *m, BN_CTX *ctx);
if (EC_POINT_mul(group, nq, NULL, public, order, NULL) != 1) {