pub unsafe extern "C" fn EC_POINT_add(
group: *const ec_group_st,
r: *mut ec_point_st,
a: *const ec_point_st,
b: *const ec_point_st,
ctx: *mut bignum_ctx,
) -> i32
Expand description
Computes the sum of two EC_POINT \param group underlying EC_GROUP object \param r EC_POINT object for the result (r = a + b) \param a EC_POINT object with the first summand \param b EC_POINT object with the second summand \param ctx BN_CTX object (optional) \return 1 on success and 0 if an error occurred