1
2
3
4
5
6
7
#![feature(split_off)]
#![feature(append)]
mod cipher;

pub use cipher::feistel_encrypt;
pub use cipher::feistel_decrypt;