[][src]Struct threefish_cipher::Threefish256

pub struct Threefish256 { /* fields omitted */ }

Methods

impl Threefish256
[src]

pub fn with_tweak(
    key: &GenericArray<u8, U32>,
    tweak0: u64,
    tweak1: u64
) -> Threefish256
[src]

Trait Implementations

impl Copy for Threefish256
[src]

impl Clone for Threefish256
[src]

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

Performs copy-assignment from source. Read more

impl BlockCipher for Threefish256
[src]

type BlockSize = U32

Size of the block in bytes

type KeySize = U32

Key size in bytes with which cipher guaranteed to be initialized

type ParBlocks = U1

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

fn new_varkey(key: &[u8]) -> Result<Self, InvalidKeyLength>
[src]

Create new block cipher instance from key with variable size. 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

Blanket Implementations

impl<T> From for T
[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

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

🔬 This is a nightly-only experimental API. (try_from)

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