Type Alias SSL_PRIVATE_KEY_METHOD

Source
pub type SSL_PRIVATE_KEY_METHOD = ssl_private_key_method_st;

Aliased Type§

struct SSL_PRIVATE_KEY_METHOD {
    pub sign: Option<unsafe extern "C" fn(*mut ssl_st, *mut u8, *mut usize, usize, u16, *const u8, usize) -> u32>,
    pub decrypt: Option<unsafe extern "C" fn(*mut ssl_st, *mut u8, *mut usize, usize, *const u8, usize) -> u32>,
    pub complete: Option<unsafe extern "C" fn(*mut ssl_st, *mut u8, *mut usize, usize) -> u32>,
}

Fields§

§sign: Option<unsafe extern "C" fn(*mut ssl_st, *mut u8, *mut usize, usize, u16, *const u8, usize) -> u32>§decrypt: Option<unsafe extern "C" fn(*mut ssl_st, *mut u8, *mut usize, usize, *const u8, usize) -> u32>§complete: Option<unsafe extern "C" fn(*mut ssl_st, *mut u8, *mut usize, usize) -> u32>

Trait Implementations

Source§

impl Clone for ssl_private_key_method_st

Source§

fn clone(&self) -> ssl_private_key_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 ssl_private_key_method_st

Source§

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

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

impl Copy for ssl_private_key_method_st