EC_GROUP_new_curve_GFp

Creates a new EC_GROUP object with the specified parameters defined over GFp (defined by the equation y^2 = x^3 + a*x + b)

Parameters

p const(libressl_d.openssl.ossl_typ.BIGNUM)*

BIGNUM with the prime number

a const(libressl_d.openssl.ossl_typ.BIGNUM)*

BIGNUM with the parameter a of the equation

b const(libressl_d.openssl.ossl_typ.BIGNUM)*

BIGNUM with the parameter b of the equation

ctx libressl_d.openssl.ossl_typ.BN_CTX*

BN_CTX object (optional)

Return Value

Type: .EC_GROUP*

newly created EC_GROUP object with the specified parameters

Meta