boring_sysType Alias ECDSA_METHOD
Source pub type ECDSA_METHOD = ecdsa_method_st;
struct ECDSA_METHOD {
pub common: openssl_method_common_st,
pub app_data: *mut c_void,
pub init: Option<unsafe extern "C" fn(_: *mut ec_key_st) -> i32>,
pub finish: Option<unsafe extern "C" fn(_: *mut ec_key_st) -> i32>,
pub group_order_size: Option<unsafe extern "C" fn(_: *const ec_key_st) -> usize>,
pub sign: Option<unsafe extern "C" fn(_: *const u8, _: usize, _: *mut u8, _: *mut u32, _: *mut ec_key_st) -> i32>,
pub flags: i32,
}