Function EC_KEY_METHOD_set_init
Source pub unsafe extern "C" fn EC_KEY_METHOD_set_init(
meth: *mut ec_key_method_st,
init: Option<unsafe extern "C" fn(_: *mut ec_key_st) -> i32>,
finish: Option<unsafe extern "C" fn(_: *mut ec_key_st)>,
copy: Option<unsafe extern "C" fn(_: *mut ec_key_st, _: *const ec_key_st) -> i32>,
set_group: Option<unsafe extern "C" fn(_: *mut ec_key_st, _: *const ec_group_st) -> i32>,
set_private: Option<unsafe extern "C" fn(_: *mut ec_key_st, _: *const bignum_st) -> i32>,
set_public: Option<unsafe extern "C" fn(_: *mut ec_key_st, _: *const ec_point_st) -> i32>,
)