pub type EllswiftEcdhHashFn = Option<unsafe extern "C" fn(output: *mut c_uchar, x32: *const c_uchar, ell_a64: *const c_uchar, ell_b64: *const c_uchar, data: *mut c_void) -> c_int>;
Expand description

A hash function used by ellswift_ecdh to hash the final ECDH shared secret.

Aliased Type§

enum EllswiftEcdhHashFn {
    None,
    Some(unsafe extern "C" fn(_: *mut u8, _: *const u8, _: *const u8, _: *const u8, _: *mut c_void) -> i32),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *mut u8, _: *const u8, _: *const u8, _: *const u8, _: *mut c_void) -> i32)

Some value of type T.

Trait Implementations§

source§

impl<T: CPtr> CPtr for Option<T>

§

type Target = <T as CPtr>::Target

source§

fn as_mut_c_ptr(&mut self) -> *mut Self::Target

source§

fn as_c_ptr(&self) -> *const Self::Target