Type Alias bssl_sys::ECDSA_METHOD

source ·
pub type ECDSA_METHOD = ecdsa_method_st;

Aliased Type§

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,
}

Fields§

§common: openssl_method_common_st§app_data: *mut c_void§init: Option<unsafe extern "C" fn(_: *mut ec_key_st) -> i32>§finish: Option<unsafe extern "C" fn(_: *mut ec_key_st) -> i32>§group_order_size: Option<unsafe extern "C" fn(_: *const ec_key_st) -> usize>§sign: Option<unsafe extern "C" fn(_: *const u8, _: usize, _: *mut u8, _: *mut u32, _: *mut ec_key_st) -> i32>§flags: i32