[][src]Struct cast5::Cast5

pub struct Cast5 { /* fields omitted */ }

Trait Implementations

impl Debug for Cast5

impl Copy for Cast5[src]

impl Clone for Cast5[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl BlockCipher for Cast5[src]

type KeySize = U16

Key size in bytes with which cipher guaranteed to be initialized

type BlockSize = U8

Size of the block in bytes

type ParBlocks = U1

Number of blocks which can be processed in parallel by cipher implementation Read more

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

Encrypt several blocks in parallel using instruction level parallelism if possible. Read more

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

Decrypt several blocks in parallel using instruction level parallelism if possible. Read more

Auto Trait Implementations

impl Send for Cast5

impl Sync for Cast5

Blanket Implementations

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

type Output = T

Should always be Self