#[repr(C)]pub struct rsa_meth_st {
pub common: openssl_method_common_st,
pub app_data: *mut c_void,
pub init: Option<unsafe extern "C" fn(rsa: *mut RSA) -> c_int>,
pub finish: Option<unsafe extern "C" fn(rsa: *mut RSA) -> c_int>,
pub size: Option<unsafe extern "C" fn(rsa: *const RSA) -> usize>,
pub sign: Option<unsafe extern "C" fn(type_: c_int, m: *const u8, m_length: c_uint, sigret: *mut u8, siglen: *mut c_uint, rsa: *const RSA) -> c_int>,
pub sign_raw: Option<unsafe extern "C" fn(rsa: *mut RSA, out_len: *mut usize, out: *mut u8, max_out: usize, in_: *const u8, in_len: usize, padding: c_int) -> c_int>,
pub decrypt: Option<unsafe extern "C" fn(rsa: *mut RSA, out_len: *mut usize, out: *mut u8, max_out: usize, in_: *const u8, in_len: usize, padding: c_int) -> c_int>,
pub private_transform: Option<unsafe extern "C" fn(rsa: *mut RSA, out: *mut u8, in_: *const u8, len: usize) -> c_int>,
pub flags: c_int,
}
Fields§
§common: openssl_method_common_st
§app_data: *mut c_void
§init: Option<unsafe extern "C" fn(rsa: *mut RSA) -> c_int>
§finish: Option<unsafe extern "C" fn(rsa: *mut RSA) -> c_int>
§size: Option<unsafe extern "C" fn(rsa: *const RSA) -> usize>
§sign: Option<unsafe extern "C" fn(type_: c_int, m: *const u8, m_length: c_uint, sigret: *mut u8, siglen: *mut c_uint, rsa: *const RSA) -> c_int>
§sign_raw: Option<unsafe extern "C" fn(rsa: *mut RSA, out_len: *mut usize, out: *mut u8, max_out: usize, in_: *const u8, in_len: usize, padding: c_int) -> c_int>
§decrypt: Option<unsafe extern "C" fn(rsa: *mut RSA, out_len: *mut usize, out: *mut u8, max_out: usize, in_: *const u8, in_len: usize, padding: c_int) -> c_int>
§private_transform: Option<unsafe extern "C" fn(rsa: *mut RSA, out: *mut u8, in_: *const u8, len: usize) -> c_int>
§flags: c_int
Trait Implementations§
Source§impl Clone for rsa_meth_st
impl Clone for rsa_meth_st
Source§fn clone(&self) -> rsa_meth_st
fn clone(&self) -> rsa_meth_st
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for rsa_meth_st
impl Debug for rsa_meth_st
Source§impl Default for rsa_meth_st
impl Default for rsa_meth_st
Source§impl PartialEq for rsa_meth_st
impl PartialEq for rsa_meth_st
impl Copy for rsa_meth_st
impl Eq for rsa_meth_st
impl StructuralPartialEq for rsa_meth_st
Auto Trait Implementations§
impl Freeze for rsa_meth_st
impl RefUnwindSafe for rsa_meth_st
impl !Send for rsa_meth_st
impl !Sync for rsa_meth_st
impl Unpin for rsa_meth_st
impl UnwindSafe for rsa_meth_st
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more