Struct openssl::symm::Cipher
[−]
[src]
pub struct Cipher(_);
Methods
impl Cipher
[src]
fn aes_128_ecb() -> Cipher
fn aes_128_cbc() -> Cipher
fn aes_128_xts() -> Cipher
fn aes_128_ctr() -> Cipher
fn aes_128_cfb1() -> Cipher
fn aes_128_cfb128() -> Cipher
fn aes_128_cfb8() -> Cipher
fn aes_128_gcm() -> Cipher
fn aes_256_ecb() -> Cipher
fn aes_256_cbc() -> Cipher
fn aes_256_xts() -> Cipher
fn aes_256_ctr() -> Cipher
fn aes_256_cfb1() -> Cipher
fn aes_256_cfb128() -> Cipher
fn aes_256_cfb8() -> Cipher
fn aes_256_gcm() -> Cipher
fn bf_cbc() -> Cipher
fn bf_ecb() -> Cipher
fn bf_cfb64() -> Cipher
fn bf_ofb() -> Cipher
fn des_cbc() -> Cipher
fn des_ecb() -> Cipher
fn rc4() -> Cipher
unsafe fn from_ptr(ptr: *const EVP_CIPHER) -> Cipher
fn as_ptr(&self) -> *const EVP_CIPHER
fn key_len(&self) -> usize
Returns the length of keys used with this cipher.
fn iv_len(&self) -> Option<usize>
Returns the length of the IV used with this cipher, or None
if the
cipher does not use an IV.
fn block_size(&self) -> usize
Trait Implementations
impl Copy for Cipher
[src]
impl Clone for Cipher
[src]
fn clone(&self) -> Cipher
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