Struct scratchstack_wrapper_aws_lc::rsa_meth_st
source · #[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
sourceimpl Clone for rsa_meth_st
impl Clone for rsa_meth_st
sourcefn clone(&self) -> rsa_meth_st
fn clone(&self) -> rsa_meth_st
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for rsa_meth_st
impl Debug for rsa_meth_st
sourceimpl Default for rsa_meth_st
impl Default for rsa_meth_st
sourceimpl PartialEq<rsa_meth_st> for rsa_meth_st
impl PartialEq<rsa_meth_st> for rsa_meth_st
sourcefn eq(&self, other: &rsa_meth_st) -> bool
fn eq(&self, other: &rsa_meth_st) -> bool
impl Copy for rsa_meth_st
impl Eq for rsa_meth_st
impl StructuralEq for rsa_meth_st
impl StructuralPartialEq for rsa_meth_st
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more