[#PEM_read_ECPKParameters] = PEM_read_ECPKParameters :mrdocs: Read EC domain parameters (ECPKParameters) from a PEM‐encoded FILE (deprecated). == Synopsis Declared in `<openssl/pem.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] xref:EC_GROUP.adoc[EC_GROUP]* PEM_read_ECPKParameters( FILE* fp, xref:EC_GROUP.adoc[EC_GROUP]** x, xref:pem_password_cb.adoc[pem_password_cb]* cb, void* u); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value EC_GROUP on success, or NULL on failure. == Parameters [cols="1,4"] |=== | Name| Description | *fp* | FILE to read from. | *x* | Optional address of an EC_GROUP pointer to reuse, or NULL. | *cb* | Password callback for encrypted PEM, or NULL. | *u* | Application data passed to `cb.` |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#