[#EC_GROUP_get_curve_GFp] = EC_GROUP_get_curve_GFp :mrdocs: Gets the parameters of an ec curve. Synonym for EC_GROUP_get_curve == Synopsis Declared in `<openssl/ec.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int EC_GROUP_get_curve_GFp( xref:EC_GROUP.adoc[EC_GROUP] const* group, xref:BIGNUM.adoc[BIGNUM]* p, xref:BIGNUM.adoc[BIGNUM]* a, xref:BIGNUM.adoc[BIGNUM]* b, xref:BN_CTX.adoc[BN_CTX]* ctx); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value 1 on success and 0 if an error occurred == Parameters [cols="1,4"] |=== | Name| Description | *group* | EC_GROUP object | *p* | BIGNUM with the prime number (GFp) or the polynomial defining the underlying field (GF2m) | *a* | BIGNUM for parameter a of the equation | *b* | BIGNUM for parameter b of the equation | *ctx* | BN_CTX object (optional) |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#