EC_KEY_insert_key_method_data

Sets the key method data of an EC_KEY object, if none has yet been set. \param key EC_KEY object \param data opaque data to install. \param dup_func a function that duplicates |data|. \param free_func a function that frees |data|. \param clear_free_func a function that wipes and frees |data|. \return the previously set data pointer, or null if |data| was inserted.

extern (C) nothrow @nogc
void*
EC_KEY_insert_key_method_data
(,
void* data
,
void* function
(
void*
)
dup_func
,
void function
(
void*
)
free_func
,
void function
(
void*
)
clear_free_func
)

Meta