pub unsafe extern "C" fn EC_POINTs_mul(
group: *const ec_group_st,
r: *mut ec_point_st,
n: *const bignum_st,
num: usize,
p: *mut *const ec_point_st,
m: *mut *const bignum_st,
ctx: *mut bignum_ctx,
) -> i32
Expand description
Computes r = generator * n + sum_{i=0}^{num-1} p[i] * m[i] \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 num number further summands \param p array of size num of EC_POINT objects \param m array of size num of BIGNUM objects \param ctx BN_CTX object (optional) \return 1 on success and 0 if an error occurred