d2i_ECParameters function
Decodes ec parameter from a memory buffer. \param key a pointer to a EC_KEY object which should be used (or NULL) \param in pointer to memory with the DER encoded ec parameters \param len length of the DER encoded ec parameters \return a EC_KEY object with the decoded parameters or NULL if an error occurred.
Implementation
@ffi.Native<
ffi.Pointer<ec_key_st> Function(
ffi.Pointer<ffi.Pointer<ec_key_st>>,
ffi.Pointer<ffi.Pointer<ffi.UnsignedChar>>,
ffi.Long,
)
>()
external ffi.Pointer<ec_key_st> d2i_ECParameters(
ffi.Pointer<ffi.Pointer<ec_key_st>> key,
ffi.Pointer<ffi.Pointer<ffi.UnsignedChar>> in$,
int len,
);