Struct libsodium_ffi::crypto_onetimeauth_poly1305_implementation[][src]

#[repr(C)]
pub struct crypto_onetimeauth_poly1305_implementation { pub implementation_name: extern "C" fn() -> *const c_char, pub onetimeauth: extern "C" fn(out: *mut c_uchar, in_: *const c_uchar, inlen: c_ulonglong, k: *const c_uchar) -> c_int, pub onetimeauth_verify: extern "C" fn(h: *const c_uchar, in_: *const c_uchar, inlen: c_ulonglong, k: *const c_uchar) -> c_int, pub onetimeauth_init: extern "C" fn(state: *mut crypto_onetimeauth_poly1305_state, key: *const c_uchar) -> c_int, pub onetimeauth_update: extern "C" fn(state: *mut crypto_onetimeauth_poly1305_state, in_: *const c_uchar, inlen: c_ulonglong) -> c_int, pub onetimeauth_final: extern "C" fn(state: *mut crypto_onetimeauth_poly1305_state, out: *mut c_uchar) -> c_int, }

Fields

Trait Implementations

impl Copy for crypto_onetimeauth_poly1305_implementation
[src]

impl Clone for crypto_onetimeauth_poly1305_implementation
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations