pub unsafe extern "C" fn EC_POINT_mul(
group: *const ec_group_st,
r: *mut ec_point_st,
n: *const bignum_st,
q: *const ec_point_st,
m: *const bignum_st,
ctx: *mut bignum_ctx,
) -> i32
Expand description
Computes r = generator * n + q * m \param group underlying EC_GROUP object \param r EC_POINT object for the result \param n BIGNUM with the multiplier for the group generator (optional) \param q EC_POINT object with the first factor of the second summand \param m BIGNUM with the second factor of the second summand \param ctx BN_CTX object (optional) \return 1 on success and 0 if an error occurred