Gift128

Struct Gift128 

Source
pub struct Gift128 { /* private fields */ }
Expand description

Gift-128 block cipher instance.

Trait Implementations§

Source§

impl AlgorithmName for Gift128

Source§

fn write_alg_name(f: &mut Formatter<'_>) -> Result

Write algorithm name into f.
Source§

impl BlockCipherDecBackend for Gift128

Source§

fn decrypt_block(&self, block: InOut<'_, '_, Block<Self>>)

Decrypt single inout block.
Source§

fn decrypt_par_blocks( &self, blocks: InOut<'_, '_, Array<Array<u8, Self::BlockSize>, Self::ParBlocksSize>>, )

Decrypt inout blocks in parallel.
Source§

fn decrypt_tail_blocks( &self, blocks: InOutBuf<'_, '_, Array<u8, Self::BlockSize>>, )

Decrypt buffer of inout blocks. Length of the buffer MUST be smaller than Self::ParBlocksSize.
Source§

fn decrypt_block_inplace(&self, block: &mut Array<u8, Self::BlockSize>)

Decrypt single block in-place.
Source§

fn decrypt_par_blocks_inplace( &self, blocks: &mut Array<Array<u8, Self::BlockSize>, Self::ParBlocksSize>, )

Decrypt blocks in parallel in-place.
Source§

fn decrypt_tail_blocks_inplace(&self, blocks: &mut [Array<u8, Self::BlockSize>])

Decrypt buffer of blocks in-place. Length of the buffer MUST be smaller than Self::ParBlocksSize.
Source§

impl BlockCipherDecrypt for Gift128

Source§

fn decrypt_with_backend( &self, f: impl BlockCipherDecClosure<BlockSize = Self::BlockSize>, )

Decrypt data using backend provided to the rank-2 closure.
Source§

fn decrypt_block_inout(&self, block: InOut<'_, '_, Array<u8, Self::BlockSize>>)

Decrypt single inout block.
Source§

fn decrypt_blocks_inout( &self, blocks: InOutBuf<'_, '_, Array<u8, Self::BlockSize>>, )

Decrypt inout blocks.
Source§

fn decrypt_block(&self, block: &mut Array<u8, Self::BlockSize>)

Decrypt single block in-place.
Source§

fn decrypt_block_b2b( &self, in_block: &Array<u8, Self::BlockSize>, out_block: &mut Array<u8, Self::BlockSize>, )

Decrypt in_block and write result to out_block.
Source§

fn decrypt_blocks(&self, blocks: &mut [Array<u8, Self::BlockSize>])

Decrypt blocks in-place.
Source§

fn decrypt_blocks_b2b( &self, in_blocks: &[Array<u8, Self::BlockSize>], out_blocks: &mut [Array<u8, Self::BlockSize>], ) -> Result<(), NotEqualError>

Decrypt blocks buffer-to-buffer. Read more
Source§

impl BlockCipherEncBackend for Gift128

Source§

fn encrypt_block(&self, block: InOut<'_, '_, Block<Self>>)

Encrypt single inout block.
Source§

fn encrypt_par_blocks( &self, blocks: InOut<'_, '_, Array<Array<u8, Self::BlockSize>, Self::ParBlocksSize>>, )

Encrypt inout blocks in parallel.
Source§

fn encrypt_tail_blocks( &self, blocks: InOutBuf<'_, '_, Array<u8, Self::BlockSize>>, )

Encrypt buffer of inout blocks. Length of the buffer MUST be smaller than Self::ParBlocksSize.
Source§

fn encrypt_block_inplace(&self, block: &mut Array<u8, Self::BlockSize>)

Encrypt single block in-place.
Source§

fn encrypt_par_blocks_inplace( &self, blocks: &mut Array<Array<u8, Self::BlockSize>, Self::ParBlocksSize>, )

Encrypt blocks in parallel in-place.
Source§

fn encrypt_tail_blocks_inplace(&self, blocks: &mut [Array<u8, Self::BlockSize>])

Encrypt buffer of blocks in-place. Length of the buffer MUST be smaller than Self::ParBlocksSize.
Source§

impl BlockCipherEncrypt for Gift128

Source§

fn encrypt_with_backend( &self, f: impl BlockCipherEncClosure<BlockSize = Self::BlockSize>, )

Encrypt data using backend provided to the rank-2 closure.
Source§

fn encrypt_block_inout(&self, block: InOut<'_, '_, Array<u8, Self::BlockSize>>)

Encrypt single inout block.
Source§

fn encrypt_blocks_inout( &self, blocks: InOutBuf<'_, '_, Array<u8, Self::BlockSize>>, )

Encrypt inout blocks.
Source§

fn encrypt_block(&self, block: &mut Array<u8, Self::BlockSize>)

Encrypt single block in-place.
Source§

fn encrypt_block_b2b( &self, in_block: &Array<u8, Self::BlockSize>, out_block: &mut Array<u8, Self::BlockSize>, )

Encrypt in_block and write result to out_block.
Source§

fn encrypt_blocks(&self, blocks: &mut [Array<u8, Self::BlockSize>])

Encrypt blocks in-place.
Source§

fn encrypt_blocks_b2b( &self, in_blocks: &[Array<u8, Self::BlockSize>], out_blocks: &mut [Array<u8, Self::BlockSize>], ) -> Result<(), NotEqualError>

Encrypt blocks buffer-to-buffer. Read more
Source§

impl BlockSizeUser for Gift128

Source§

type BlockSize = UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>

Size of the block in bytes.
Source§

fn block_size() -> usize

Return block size in bytes.
Source§

impl Clone for Gift128

Source§

fn clone(&self) -> Gift128

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Gift128

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Drop for Gift128

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl KeyInit for Gift128

Source§

fn new(key: &Key<Self>) -> Self

Create new value from fixed size key.
Source§

fn weak_key_test(_key: &Array<u8, Self::KeySize>) -> Result<(), WeakKeyError>

Check if the key might be considered weak.
Source§

fn new_checked(key: &Array<u8, Self::KeySize>) -> Result<Self, WeakKeyError>

Create new value from fixed size key after checking it for weakness.
Source§

fn new_from_slice(key: &[u8]) -> Result<Self, InvalidLength>

Create new value from variable size key.
Source§

impl KeySizeUser for Gift128

Source§

type KeySize = UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>

Key size in bytes.
Source§

fn key_size() -> usize

Return key size in bytes.
Source§

impl ParBlocksSizeUser for Gift128

Source§

type ParBlocksSize = UInt<UTerm, B1>

Number of blocks which can be processed in parallel.
Source§

impl ZeroizeOnDrop for Gift128

Available on crate feature zeroize only.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.