d2i_ECParameters

Decodes ec parameter from a memory buffer.

extern (C) nothrow @nogc
d2i_ECParameters
(,
const(ubyte)** in_
,
core.stdc.config.c_long len
)

Parameters

key .EC_KEY**

a pointer to a EC_KEY object which should be used (or null)

in_ const(ubyte)**

pointer to memory with the DER encoded ec parameters

len core.stdc.config.c_long

length of the DER encoded ec parameters

Return Value

Type: .EC_KEY*

a EC_KEY object with the decoded parameters or null if an error occurred.

Meta