file_endec 1.0.1

Secure file encryption and decryption from the command line.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use ::aes::Aes256;
use ::block_modes::block_padding::Iso7816;
use ::block_modes::Cbc;
use ::twofish::Twofish;

type Aes256Cbc = Cbc<Aes256, Iso7816>;
type TwofishCbc = Cbc<Twofish, Iso7816>;

pub mod encrypt;

pub mod decrypt;