Function EC_POINT_get_Jprojective_coordinates_GFp

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

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