[#EC_GROUP_new_from_params] = EC_GROUP_new_from_params :mrdocs: Creates a EC_GROUP object with a curve specified by parameters. The parameters may be explicit or a named curve, == Synopsis Declared in `<openssl/ec.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:EC_GROUP.adoc[EC_GROUP]* EC_GROUP_new_from_params( xref:OSSL_PARAM.adoc[OSSL_PARAM] const params[], xref:OSSL_LIB_CTX.adoc[OSSL_LIB_CTX]* libctx, char const* propq); ---- == Return Value newly created EC_GROUP object with specified parameters or NULL if an error occurred == Parameters [cols="1,4"] |=== | Name| Description | *params* | A list of parameters describing the group. | *libctx* | The associated library context or NULL for the default context | *propq* | A property query string |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#