[go: up one dir, main page]

cipher 0.1.1

feistel cipher implementation in rust. Converts str -> Vec<u32>
Documentation
1
2
3
4
5
6
7
#![feature(split_off)]
#![feature(append)]
mod cipher;

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