Struct nettle_sys::nettle_cipher
source · #[repr(C)]pub struct nettle_cipher {
pub name: *const c_char,
pub context_size: c_uint,
pub block_size: c_uint,
pub key_size: c_uint,
pub set_encrypt_key: nettle_set_key_func,
pub set_decrypt_key: nettle_set_key_func,
pub encrypt: nettle_cipher_func,
pub decrypt: nettle_cipher_func,
}
Fields§
§name: *const c_char
§context_size: c_uint
§block_size: c_uint
§key_size: c_uint
§set_encrypt_key: nettle_set_key_func
§set_decrypt_key: nettle_set_key_func
§encrypt: nettle_cipher_func
§decrypt: nettle_cipher_func
Trait Implementations§
source§impl Clone for nettle_cipher
impl Clone for nettle_cipher
source§fn clone(&self) -> nettle_cipher
fn clone(&self) -> nettle_cipher
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 moresource§impl Debug for nettle_cipher
impl Debug for nettle_cipher
impl Copy for nettle_cipher
Auto Trait Implementations§
impl RefUnwindSafe for nettle_cipher
impl !Send for nettle_cipher
impl !Sync for nettle_cipher
impl Unpin for nettle_cipher
impl UnwindSafe for nettle_cipher
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