Type Alias 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 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>§sign: Option<unsafe extern "C" fn(*const u8, usize, *mut u8, *mut u32, *mut ec_key_st) -> i32>§flags: i32