Enum magic_crypt::MagicCrypt[][src]

pub enum MagicCrypt {
    AES(MagicCryptAES),
    DES(MagicCryptDES),
}

This enum of structs can help you encrypt or decrypt data in a quick way.

Variants

Methods

impl MagicCrypt
[src]

Create a new MagicCrypt instance. You may want to use new_magic_crypt! macro.

Auto Trait Implementations

impl !Send for MagicCrypt

impl !Sync for MagicCrypt