Function EC_POINT_set_Jprojective_coordinates_GFp

Source
pub unsafe extern "C" fn EC_POINT_set_Jprojective_coordinates_GFp(
    group: *const ec_group_st,
    p: *mut ec_point_st,
    x: *const bignum_st,
    y: *const bignum_st,
    z: *const bignum_st,
    ctx: *mut bignum_ctx,
) -> i32
Expand description

Sets the jacobian projective coordinates of a EC_POINT over GFp \param group underlying EC_GROUP object \param p EC_POINT object \param x BIGNUM with the x-coordinate \param y BIGNUM with the y-coordinate \param z BIGNUM with the z-coordinate \param ctx BN_CTX object (optional) \return 1 on success and 0 if an error occurred