Function EC_GROUP_new_curve_GF2m

Source
pub unsafe extern "C" fn EC_GROUP_new_curve_GF2m(
    p: *const bignum_st,
    a: *const bignum_st,
    b: *const bignum_st,
    ctx: *mut bignum_ctx,
) -> *mut ec_group_st
Expand description

Creates a new EC_GROUP object with the specified parameters defined over GF2m (defined by the equation y^2 + xy = x^3 + ax^2 + b) \param p BIGNUM with the polynomial defining the underlying field \param a BIGNUM with the parameter a of the equation \param b BIGNUM with the parameter b of the equation \param ctx BN_CTX object (optional) \return newly created EC_GROUP object with the specified parameters