#[repr(C)]pub struct chachapoly_context {
pub chacha20_ctx: chacha20_context,
pub poly1305_ctx: poly1305_context,
pub aad_len: u64,
pub ciphertext_len: u64,
pub state: c_int,
pub mode: chachapoly_mode_t,
}Fields§
§chacha20_ctx: chacha20_context§poly1305_ctx: poly1305_context§aad_len: u64§ciphertext_len: u64§state: c_int§mode: chachapoly_mode_tTrait Implementations§
Source§impl Clone for chachapoly_context
impl Clone for chachapoly_context
Source§fn clone(&self) -> chachapoly_context
fn clone(&self) -> chachapoly_context
Returns a duplicate 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 Default for chachapoly_context
impl Default for chachapoly_context
impl Copy for chachapoly_context
Auto Trait Implementations§
impl Freeze for chachapoly_context
impl RefUnwindSafe for chachapoly_context
impl Send for chachapoly_context
impl Sync for chachapoly_context
impl Unpin for chachapoly_context
impl UnwindSafe for chachapoly_context
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