Struct aws_lc_sys::ecdsa_method_st
source · #[repr(C)]pub struct ecdsa_method_st {
pub common: openssl_method_common_st,
pub app_data: *mut c_void,
pub init: Option<unsafe extern "C" fn(key: *mut EC_KEY) -> c_int>,
pub finish: Option<unsafe extern "C" fn(key: *mut EC_KEY) -> c_int>,
pub group_order_size: Option<unsafe extern "C" fn(key: *const EC_KEY) -> usize>,
pub sign: Option<unsafe extern "C" fn(digest: *const u8, digest_len: usize, sig: *mut u8, sig_len: *mut c_uint, eckey: *mut EC_KEY) -> c_int>,
pub flags: c_int,
}Fields§
§common: openssl_method_common_st§app_data: *mut c_void§init: Option<unsafe extern "C" fn(key: *mut EC_KEY) -> c_int>§finish: Option<unsafe extern "C" fn(key: *mut EC_KEY) -> c_int>§group_order_size: Option<unsafe extern "C" fn(key: *const EC_KEY) -> usize>§sign: Option<unsafe extern "C" fn(digest: *const u8, digest_len: usize, sig: *mut u8, sig_len: *mut c_uint, eckey: *mut EC_KEY) -> c_int>§flags: c_intTrait Implementations§
source§impl Clone for ecdsa_method_st
impl Clone for ecdsa_method_st
source§fn clone(&self) -> ecdsa_method_st
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)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more