Enum openssl::crypto::symm::Type [] [src]

pub enum Type {
    AES_128_ECB,
    AES_128_CBC,
    AES_128_CFB1,
    AES_128_CFB128,
    AES_128_CFB8,
    AES_256_ECB,
    AES_256_CBC,
    AES_256_CFB1,
    AES_256_CFB128,
    AES_256_CFB8,
    RC4_128,
}

Variants

AES_128_ECB
AES_128_CBC
AES_128_CFB1
AES_128_CFB128
AES_128_CFB8
AES_256_ECB
AES_256_CBC
AES_256_CFB1
AES_256_CFB128
AES_256_CFB8
RC4_128

Trait Implementations

Derived Implementations

impl Clone for Type

fn clone(&self) -> Type

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

impl Copy for Type