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

Trait Implementations

Source§

impl Clone for ecdsa_method_st

Source§

fn clone(&self) -> ecdsa_method_st

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ecdsa_method_st

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for ecdsa_method_st