Struct aes::Aes256 [−][src]
pub struct Aes256 { /* fields omitted */ }AES-256 block cipher instance
Trait Implementations
impl Debug for Aes256
impl Debug for Aes256fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl Clone for Aes256[src]
impl Clone for Aes256fn clone(&self) -> Aes256[src]
fn clone(&self) -> Aes256Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl BlockCipher for Aes256[src]
impl BlockCipher for Aes256type KeySize = UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>
Key size in bytes with which cipher guaranteed to be initialized
type BlockSize = UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>
Size of the block in bytes
type ParBlocks = UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>
Number of blocks which can be processed in parallel by cipher implementation Read more
fn new(
key: &GenericArray<u8, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>
) -> Aes256[src]
fn new(
key: &GenericArray<u8, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>
) -> Aes256Create new block cipher instance from key with fixed size.
fn encrypt_block(
&self,
block: &mut GenericArray<u8, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>
)[src]
fn encrypt_block(
&self,
block: &mut GenericArray<u8, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>
)Encrypt block in-place
fn decrypt_block(
&self,
block: &mut GenericArray<u8, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>
)[src]
fn decrypt_block(
&self,
block: &mut GenericArray<u8, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>
)Decrypt block in-place
fn encrypt_blocks(
&self,
blocks: &mut GenericArray<GenericArray<u8, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>>
)[src]
fn encrypt_blocks(
&self,
blocks: &mut GenericArray<GenericArray<u8, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>>
)Encrypt several blocks in parallel using instruction level parallelism if possible. Read more
fn decrypt_blocks(
&self,
blocks: &mut GenericArray<GenericArray<u8, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>>
)[src]
fn decrypt_blocks(
&self,
blocks: &mut GenericArray<GenericArray<u8, UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>>, UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>>
)Decrypt several blocks in parallel using instruction level parallelism if possible. Read more
fn new_varkey(key: &[u8]) -> Result<Self, InvalidKeyLength>[src]
fn new_varkey(key: &[u8]) -> Result<Self, InvalidKeyLength>Create new block cipher instance from key with variable size. Read more