Struct crypto::aesni::AesNiEncryptor [] [src]

pub struct AesNiEncryptor {
    // some fields omitted
}

Methods

impl AesNiEncryptor
[src]

fn new(key_size: KeySize, key: &[u8]) -> AesNiEncryptor

Trait Implementations

impl Copy for AesNiEncryptor
[src]

impl Clone for AesNiEncryptor
[src]

fn clone(&self) -> AesNiEncryptor

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl BlockEncryptor for AesNiEncryptor
[src]

fn block_size(&self) -> usize

fn encrypt_block(&self, input: &[u8], output: &mut [u8])